Advertisement
thotfrnk

methods2.java

Dec 7th, 2022 (edited)
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.94 KB | None | 0 0
  1. import java.util.Scanner;
  2. public class number2 {
  3.     public static void main(String[] args) {
  4.  
  5.         Scanner input = new Scanner (System.in);
  6.  
  7.         double mark;
  8.  
  9.         System.out.println("Mark obtained: ");
  10.         mark = input.nextDouble();
  11.  
  12.         grade(mark);
  13.     }
  14.  
  15.     public static void grade(double mark) {
  16.         if(mark >= 90) {
  17.             System.out.println("A");
  18.         }
  19.         else
  20.             if(mark >= 80 && mark <= 89) {
  21.                 System.out.println("B");
  22.             }
  23.             else
  24.                 if(mark >= 70 && mark <= 79) {
  25.                     System.out.println("C");
  26.                 }
  27.                 else
  28.                     if(mark >= 60 && mark <= 69) {
  29.                         System.out.println("D");
  30.                     }
  31.                     else
  32.                         if(mark < 60) {
  33.                             System.out.println("F");
  34.                         }
  35.     }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement