first commit
This commit is contained in:
12
helloworld.java
Normal file
12
helloworld.java
Normal 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!");
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user