java/helloworld.java
2024-10-07 19:09:36 +03:00

13 lines
372 B
Java

import java.util.Scanner;
public class helloworld {
public static void main(String[] args) {
String test;
Scanner scan = new Scanner(System.in);
System.out.println("ENTER A TEXT!");
test = scan.nextLine();
System.out.println("You entered\n" + test);
int result = 50;
System.out.println("Hello, World!");
}
}