Need Help on J2SE

M

Masamunexiii

Can you help me code these two programs? i can't figure out how to do
them.

1. Write a program that displays your name inside a text box on the
console screen, like this:

+----+
|Koos|
+----+

Have the program prompt for a name and drawn the box around it.
Repeatedly prompt until the user enters "q" or "Q" to quit.

2. Write a program that prints a face, using text characters. Ex.

//////
| o o |
(| ^ |)
| \_/ |
 
J

jan V

Can you help me code these two programs? i can't figure out how to do
them.

Your post looks like one coming from a lazy son-of-a-b student. Am I close?
Maybe you're dreaming of going into management later, and being very good at
delegating??
 
J

Joan

Masamunexiii said:
Can you help me code these two programs? i can't figure out how
to do
them.

1. Write a program that displays your name inside a text box on
the
console screen, like this:

+----+
|Koos|
+----+

Have the program prompt for a name and drawn the box around it.
Repeatedly prompt until the user enters "q" or "Q" to quit.

2. Write a program that prints a face, using text characters.
Ex.

//////
| o o |
(| ^ |)
| \_/ |
-----

The tricky part is to escape the "\" in the third line.
------------
class B {
public static void main(String[] args) {
System.out.println(" ////// ");
System.out.println(" | o o | ");
System.out.println(" (| ^ |)");
System.out.println(" | \\_/ |");
System.out.println(" ----- ");
}
}
 
M

Masamunexiii

thanks for the help. I am taking java next year and i have some
programs to code for summer work. i figured out 10 out the 12 i needed
to do but i couldn't figure out how to code the two programs you help
me with. i still don't know anything about the first problem. i tried
reading a book about java but that did not include this.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top