first commit

This commit is contained in:
2024-10-07 19:09:36 +03:00
commit f82356c020
4 changed files with 38 additions and 0 deletions

12
helloworld.java Normal file
View File

@ -0,0 +1,12 @@
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!");
}
}