Computer Applications
Write a program to print your School name four times in separate lines.
Java
Java Intro
66 Likes
Answer
public class KboatSchoolName
{
public static void main(String args[]) {
System.out.println("St. Francis' College");
System.out.println("St. Francis' College");
System.out.println("St. Francis' College");
System.out.println("St. Francis' College");
}
}
Output
Answered By
23 Likes
Related Questions
Write a program to find the sum and average of three numbers.
Write a program to interchange the value of two numbers without using the third variable.
Write a program to print, "Welcome to the World of Computers".
Write a program to print your Name, Class, Roll_No, Marks and Age. Name this file, 'MyProfile'.