Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class targil3
- {
- static Scanner reader = new Scanner(System.in);
- /**
- * @param args
- */
- public static void main(String[] args)
- {
- int zion;
- System.out.println ("enter grade");
- zion = reader.nextInt();
- if ( zion == 100) {
- System.out.println("grade is 100");
- }
- if (zion <= 80) {
- System.out.println ("grade is below or equals to 80");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment