JavaLabs/java_ex/example4.java

10 lines
303 B
Java
Raw Permalink Normal View History

2026-01-23 01:11:16 +03:00
import java.util.Scanner;
public class example4 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Input a number:");
int num = in.nextInt();
System.out.println("Your number" + num);
in.close();
}
}