I need help with writing up the Java Code.

I need help writing Java code.?

  • Hi I need help writing Java code using while loops. The code is supposed to make a user enter a character and the character has to be displayed 40 times with spaces in between the characters. I wrote this code (see below)but it just shows one character and ends.Please help me import java.util.Scanner; import java.io.File; import java.io.FileNotFoundException; import java.io.PrintStream; class lab5{ /** * Method main * * * @param args * */ public static void main(String args[]) throws FileNotFoundException { PrintStream diskWriter= new PrintStream("xter.txt"); Scanner myScanner =new Scanner(System.in); char xter; System.out.print("Please enter a character from the keyboard."); xter = myScanner.findInLine(".").charAt(0); while (xter != '0') { diskWriter.print(xter); diskWriter.print(" "); } } }

  • Answer:

    I relied on http://www.video-animation.com/java_004.shtml for assistance on the correct Java syntax and to provide to you a great and simple example. If you follow the parts labeled 1, 2, and 3, then this should fix the problem. Hint: If you make counter = 1, then part 2 should be while(counter < 41) so that you get 40 iterations.

Marc at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

Okay, my Java style might be a bit different from yours, but here's what I did: // The "Characters" class. import java.awt.*; import hsa.Console; public class Characters { static Console c; // The output console public static void main (String[] args) { c = new Console (); //Specify a String value String character; //Let the user typ in a character in for the String value c.print ("Please enter a character: "); character = c.readLine(); //Create a counter and a loop for (int counter=1; counter<=40; counter++) //the counter keeps the loop going for 40 times { c.print (character +" "); //displays the character and a space } } // main method } // Characters class I hope this helps. Copy it all into Java and it should work :D. Good luck.

Just Me and Myself :)

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.