+ 1
I am a beginner in Java language . How to write a program to show a message "Hi Solo Learn" in Java language?
5 Respostas
+ 2
public class ClassName
{
public static void main(String args[])
{
System.out.println("Hi Solo Learn");
}
}
+ 2
Watch the lessons in this app rather than waiting unnecessary questions here. They will give you better guidance.
+ 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");
}
}
0
Thank you very much