Guest User

Untitled

a guest
Oct 18th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. public class Notes {
  2.  
  3. public static void main(String[] args) {
  4.  
  5. float result = 7.5f;
  6.  
  7. if(result >= 10){
  8. System.out.println("A+");
  9. }else if(result >= 9){
  10. System.out.println("A");
  11. }else if (result >= 7) {
  12. System.out.println("B+");
  13. }else if (result >= 6) {
  14. System.out.println("B");
  15. }else if (result >= 5.5) {
  16. System.out.println("B-");
  17. }else if (result >=5 ) {
  18. System.out.println("C");
  19. }else if (result >=0 ) {
  20. System.out.println("F");
  21. }
  22.  
  23. System.out.println("End");
  24. }
  25. }
Add Comment
Please, Sign In to add comment