20 lines
373 B
Java
20 lines
373 B
Java
|
package iie;
|
||
|
|
||
|
public class publicstaticvoidmain {
|
||
|
public static void main(String[] args){
|
||
|
System.out.println("Hello World!");
|
||
|
|
||
|
int test = 1234;
|
||
|
String testString = Integer.toString(test);
|
||
|
int test2 = Integer.parseInt(testString);
|
||
|
System.out.println(test2);
|
||
|
|
||
|
|
||
|
long currentTime = System.currentTimeMillis();
|
||
|
System.out.println(currentTime);
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|