Computer Science, asked by heer2876, 8 months ago

3) Write a program in Java Define a java class Succeed to display the following output Failures are the pillars of success. Once you get success . Make it your habit.
4) Write a program in java to print your school name five times?
5) Write a program to print your name five times next to each other ? ​

Answers

Answered by dutta37
2

Explanation:

4) class School

{

public static void main(String[]args)

{

int s=1;

for(s=1;s<=5;s++)

{

System. out.println("DMHSS");

}

}

}

5)class Name

{

public static void main(String[]args)

{

int s=1;

for(s=1;s<=5;s++)

{

System. out.println("Abhradeep");

}

}

}

Similar questions