bismiALLAH

This commit is contained in:
dadgam3er 2024-09-05 11:12:08 -04:00
parent 7ab4c66ae6
commit acf692d5b9

14
Stdinout.java Normal file
View File

@ -0,0 +1,14 @@
import java.util.Scanner;
public class Stdinout {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
sc.nextLine();
String y = sc.nextLine();
sc.close();
System.out.println("Int: " + x);
System.out.println("String " + y);
}
}