Advertisement
apez1

Term 1: Lesson 17 - Coding Activity 1

Sep 25th, 2018
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.44 KB | None | 0 0
  1.  
  2.  
  3.  
  4.     public class Lesson_17_Activity_One {
  5.  
  6.  public static void main(String[] args) {
  7.  
  8.  
  9.  
  10.   Scanner scanner = new Scanner(System.in);
  11.  
  12.   System.out.println("Please list a list of test scores.");
  13.  
  14.    int x;   //input
  15.      int y = 0;  //total
  16.      int z = 0;  //numbers
  17.      while ((x = scanner.nextInt()) != -1) {
  18.        y += x;
  19.        ++z;
  20.      }
  21.      System.out.println("The average is: " + (double) y / z);
  22.  
  23.  }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement