(Display five messages) Write a program that displays Welcome to Java five times.
public class Exercise_02 { public static void main(String[] args) { for (int i = 0; i < 5; i++) { System.out.println("Welcome to Java"); } } }
Access to bulk amount of Study Resources, Course Notes, Test Prep, 24/7 Homework Help, solution manuals, homework help and more.
(Display five messages) Write a program that displays Welcome to Java five times.
public class Exercise_02 { public static void main(String[] args) { for (int i = 0; i < 5; i++) { System.out.println("Welcome to Java"); } } }
No comments :
Post a Comment