Assignemnt #67 and Adding Values in a Loop

Code

/// Name: David Shkolnikov
/// Period: 6
/// Program Name: Adding Values
/// File Name: AddingValues.java
/// Date Finished: 12/17/2015

import java.util.Scanner;
public class AddingValues
{
    public static void main( String[] args )
    {
        int number, sum = 0;
        
        Scanner keyboard = new Scanner(System.in);
        
        System.out.println("I will add up the numbers you give me.");
        System.out.print("Number: ");
        number = keyboard.nextInt();
        
        while ( number != 0 )
        {
            sum = sum + number;
            System.out.println("The total so far is " + sum);
            System.out.print("Number: ");
            number = keyboard.nextInt();
        }
        System.out.println(" ");
        System.out.println("The total is " + sum);
    }
}
    

Picture of the output

Assignment 67