how to print "God is One" in java
Answers
Answered by
3
Answer:
How do I print a Java program?
Once you have the Java compiler successfully installed, open a text editor (example, Notepad) and type in the following:
/*
* The God is one Java program.
* prints"God is one " on the computer screen.
*/
class God is one {
public static void main(String[] args) {
System. out. println("God is one ");
}
Explanation:
hope it helps you
Similar questions