Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //17.04.2021
- import java.util.Scanner;
- public class Ex02 {
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- Scanner in = new Scanner(System.in);
- int x;
- int y;
- System.out.print("Enter a number: ");
- x = in.nextInt();
- // x=37;
- y = x + 1;
- System.out.println(y);
- in.close();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement