Advertisement
Guest User

phaixal1

a guest
Mar 19th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1.  
  2. package javaapplication28;
  3.  
  4. public class JavaApplication28 {
  5.  
  6.  
  7.  
  8. public static void main(String[] args) {
  9. System.out.println("The grade is = ");
  10. printGrade(78.5);
  11.  
  12. System.out.println("The grade is = ");
  13. printGrade(59.5);
  14.  
  15. }
  16. public static void printGrade(double score){
  17. if (score >= 90.0){
  18. System.out.println("A");
  19. }
  20. else if ( score >= 80.0){
  21. System.out.println("B");
  22. }
  23. else if (score >= 70.0){
  24. System.out.println("C");
  25. }else if (score >= 60.0 ){
  26. System.out.println("D");
  27. }else {
  28. System.out.println("F");
  29. }
  30. }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement