+ 1

I am a beginner in Java language . How to write a program to show a message "Hi Solo Learn" in Java language?

25th Jan 2018, 3:34 AM
Mustafa Ali
Mustafa Ali - avatar
5 odpowiedzi
25th Jan 2018, 5:12 AM
Gaurav Agrawal
Gaurav Agrawal - avatar
+ 2
public class ClassName { public static void main(String args[]) { System.out.println("Hi Solo Learn"); } }
25th Jan 2018, 3:39 AM
Vaibhav Tandon
Vaibhav Tandon - avatar
+ 2
Watch the lessons in this app rather than waiting unnecessary questions here. They will give you better guidance.
25th Jan 2018, 4:07 AM
Akash papnai
Akash papnai - avatar
+ 1
It is one of the first lessons in the course. Here is copy & paste of “Hello World” program though: class MyClass { public static void main(String[ ] args) { System.out.println("Hello World"); } }
25th Jan 2018, 3:38 AM
Jacob Pembleton
Jacob Pembleton - avatar
0
Thank you very much
27th Jan 2018, 6:52 AM
Mustafa Ali
Mustafa Ali - avatar