Programming Assignment #67
Code
/// Name: Dylan Sleeper
/// Period: 6
/// Program Name: Adding
/// File Name: Adding.java
/// Date Finished: 1/5/2016
import java.util.Scanner;
public class Adding{
public static void main(String[] args){
System.out.println("Give me some numbers and I'll add them up");
Scanner keyboard = new Scanner(System.in);
int total = 0;
int time = 0;
while(time < 5){
System.out.print("Number: ");
int num = keyboard.nextInt();
total += num;
System.out.println("The new total is " + total + ".");
time++;
}
System.out.println("");
System.out.println("The final total is " + total + ".");
}
}
Outputs