//Read in numbers: find total, using a for loop package numbers; import java.util.*; public class NumberTotal { public static void main(String[] args) { Scanner keyboard=new Scanner(System.in); //do just once int num, numbers, total=0; System.out.print("How many numbers are there to be added:"); numbers=keyboard.nextInt(); for(int i=0;i