Start Coding
Memory Limit: 128000 kB
Problem Statement
When learning a new language, we first learn to output some message. Here, we'll start with the famous "Hello World" message.
There is no input, you just have to print "Hello World", without the quotes.
Input
No Input
Output
Hello World
Explanation:
Hello World is printed.
// copy the code below and paste it to your editor
import java.io.*;
import java.util.*; //This is a starter code
public class Main {
public static void main(String[] args){
System.out.println("Hello World");
}
}
![]() |
start coding || newton school assignment || newton school assignment solution || Abhinav Guddu Assignments solution |
Good;
ReplyDelete