Skip to content

Commit 2093bea

Browse files
hello_Name
It will print hello (your name) to java world.
1 parent 7f1df0c commit 2093bea

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Hello_Name

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import java.util.*;
2+
class Hello
3+
{
4+
public static void main(String args[])
5+
{
6+
Scannner sc=new Scanner(System.in);
7+
Stirng s=sc.next();
8+
System.out.println("Hello"+" "+s+" "+"to java world");
9+
}
10+
}

0 commit comments

Comments
 (0)