InterviewSolution
Saved Bookmarks
| 1. |
Write a program to display three ipl team name in the separate line |
|
Answer» class P1{ public static void MAIN ( ){int i;System.out.println ("CHENNAI super KINGS")System.out.println ("Delhi capitals")System.out.println (" Rajasthan Royals")}}} |
|