- 9
Complete the given program to print "Java is fun". Note that the sentence starts with a capital letter. Hint Just add the t
5 Réponses
+ 6
Please read this guide before posting a question
https://www.sololearn.com/Discuss/333866/?ref=app
+ 4
public class Program
{
public static void main(String[] args) {
//print "Java is fun"
System.out.println("Java is fun");
}
}
0
public class Program
{
public static void main(String[] args) {
//print "Java is fun"
System.out.println("Java is fun");
}
}
Good Luck
0
public static void main(String[] args) {
//print "Java is fun"
System.out.println();
}
}
- 4
Treesa Sophia
If your 1st program in Java is "Hello World" then you can do it.