Computer Science, asked by hastibeladiya, 8 months ago

write a program in java to print your school name in four different lines​

Answers

Answered by TheUntrustworthy
0

Java program to print your name four times:

class Name

{

public static void main (string args [])

{

int c=0;

while (c<4)

{

System.out.println ("Your School Name");

c++

}

}

}

Similar questions