Source Code:
- public class HelloWorld {
- public static void main(String[] args) {
- System.out.print("hello world");
- System.out.print(12345);
- }
- }
Output:
hello world
12345
- public class HelloWorld {
- public static void main(String[] args) {
- System.out.print("hello world");
- System.out.print(12345);
- }
- }
0 comments:
Post a Comment