Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In this first assignment I have to have the user input some number (ex: 312) then add each number and output something like: "The numbers are 3 1 2 with the sum of 6." Here are the codes:

public static void main(String[] args) {
    int Max_Size = 30;
    char[] myArray = new char [Max_Size];
    String temp = " ";
    char parse;
    int sum = 0;
    int counter = 0;
    System.out.print("Please enter a non-negative integer: ");

    try{
        BufferedReader dataIn = new BufferedReader(
                new InputStreamReader(System.in));
        temp = dataIn.readLine();
    } catch (IOException e) {
        System.out.println("Error!");
    }

   System.out.print("The numbers are ");
   //put each character of the string into a char array
   for (int i = 0; i < temp.length(); i++){
     myArray[i] = temp.charAt(i);
       System.out.print(myArray[i] + " ");
    }
   //take sum of each character as an integer
    while (counter != temp.length()){
        sum = sum + (myArray[counter] - '0');
        counter++;
    }
    System.out.println("with the sum of " + sum);
}

Here is a sample run:

Please enter a non-negative integer: 
312
The numbers are 3 1 2 with the sum of 6
BUILD SUCCESSFUL (total time: 7 seconds)

HOW DO I HAVE IT SO A NEW LINE ISN'T PLACED FOR THE INPUT: 312 ? Meaning I want it so it is like "Please enter a non-negative integer: 312", with the 312 in the same line. Also, is there a better way to parse the input into integers and put it into an integer array?

share|improve this question
I've been doing Java for more than a decade, yet I find this interesting because I don't immediately know the answer! Good question. – Steve McLeod Jul 14 '09 at 7:06

3 Answers

I don't know why you're seeing that - I've just tried it and obtained this output:

Please enter a non-negative integer: 312
The numbers are 3 1 2 with the sum of 6

What platform are you running on?

I would say that your use of a char array is somewhat pointless when you can just use charAt(), and if you really do want to convert the input into a char array, I'd use String.toCharArray() instead.

Also, if you're using Java 1.6, I'd recommend:

String temp = System.console().readLine();

as a simpler way of reading a line of text from the user.

share|improve this answer
I was using Netbeans on Ubuntu. Thanks!! – hellokc Jul 14 '09 at 7:15
1  
One hint about console(): it is allowed to return null and frequently does it when I run my code from within Eclipse - annoying. – kd304 Jul 14 '09 at 7:18
Yea you're right!! That totally cut out like 8 lines of code!!! – hellokc Jul 14 '09 at 7:18
I just ran it on Mac OS X, and like Jon, it worked how you desire. – Steve McLeod Jul 14 '09 at 7:20
@kd304: Good point :) @Kap Choi: I strongly suspect that Netbeans is responsible in this case. Try running it from the command line. – Jon Skeet Jul 14 '09 at 7:21

If you are using BufferedReader.readLine(), it will read till the end of the line excluding the new line. So I don't think that the input string will contain any new line characters. Again to remove any spaces you can use the trim function.

share|improve this answer
I think the trouble was not the value read by readline() but the placement of the input cursor not directly after the "Please enter a non-negative integer:" printout. – kd304 Jul 14 '09 at 7:26

I suspect this may be due to the NetBeans console, or perhaps the fact that you appear to be executing this via Ant/Maven (perhaps a NetBeans thing).

(I'm assuming Ant/Maven due to the "BUILD SUCCESSFUL (total time: 7 seconds)" at the end).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.