// // Total.java // // Goal: read a file, sum up the first 12 scores // .... // import java.util.Scanner; public class Total { public static void main(String[] args) { Scanner kb = new Scanner(System.in); int i, num, total=0; for(i=0; i<12; i++) { num = kb.nextInt(); total += num; } System.out.println("Total = " + total); } }