daily pastebin goal
41%
SHARE
TWEET

Untitled

a guest Jan 29th, 2018 61 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import java.util.Scanner;
  2.  
  3. class Main {
  4.   public static void main(String[] args) {
  5.    
  6.     int numDays, numRiders;
  7.     String lineName;
  8.     double average;
  9.    
  10.     Scanner sc = new Scanner(System.in);
  11.    
  12.     System.out.println("Welcome to the Muni Ridership Calculator.");
  13.  
  14.     System.out.println("Which Muni Line did you survey: ");
  15.     lineName = sc.nextLine();
  16.     System.out.println("How many days did you survey ridership?: ");
  17.     numDays = sc.nextInt();
  18.     System.out.println("How many riders did you count?: ");
  19.     numRiders = sc.nextInt();
  20.    
  21.     average = ( numRiders / numDays );
  22.     System.out.printf("According to your survey, an average of %,.2f people", average);
  23.  
  24.   }
  25. }
RAW Paste Data
Pastebin PRO WINTER Special!
Get 40% OFF Pastebin PRO accounts!
Top