InterviewSolution
Saved Bookmarks
| 1. |
Write a java program to display name of four countries along with their capitals |
|
Answer» tion:PUBLIC STATIC void main(String[] ARGS) {System.out.println("India. --New delhi");System.out.println("USA---WASHINGTON dc");System.out.println("CHINA---bejing);System.out.println("Bangladesh-Dhaka");} |
|