476179

pay

Oct 8th, 2019
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. package lessons;
  2.  
  3. import java.util.Scanner;
  4.  
  5.  
  6. public class Payroll
  7. {
  8. // rpgram calculate total grosss pay, ask for name hours and payrate
  9. public static void main(String[] args)
  10. {
  11. Scanner keyboard = new Scanner(System.in);
  12. String name;
  13. double payRate, hours, grossPay;
  14. System.out.print("whats your name?");
  15. name = keyboard.nextLine();
  16. System.out.print("whats your pay rate "+ name+ "?");
  17. payRate = keyboard.nextDouble();
  18. System.out.print("how many hours did you work?");
  19. hours = keyboard.nextDouble();
  20. grossPay = hours * payRate;
  21. System.out.println(grossPay);
  22.  
  23. }
  24.  
  25. }
Add Comment
Please, Sign In to add comment