Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class Ex01 {
- public static void main(String[] args) {
- Scanner in = new Scanner(System.in);
- int y;
- System.out.print("Enter your grade (0 to 100): ");
- y = in.nextInt();
- System.out.println("your grade is " + y);
- in.close();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement