Computer Science, asked by ankitaguptaji2749, 6 months ago

Write a program:-
a. Print each word of "Lucknow Public School" in separate line.

Answers

Answered by Vishesha13
0

Explanation:

Lucknow

Public

School

Answered by mayureshbelamakar190
2
class lps
{
public static void main ()
{

System.out.println(“Lucknow”);
System.out.println(“Public”);
System.out.println(“School”);
}
}


Hope this helps you
Happy Learning:D

Similar questions