Advertisement
Guest User

Untitled

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