InterviewSolution
Saved Bookmarks
| 1. |
Write a JavaScript code to print tables of numbers from 1 to 10 |
|
Answer» java.util.*;public class hello{ public static void MAIN ()INT i =1Scanner sc=new SCANNER(System.in);System.out.println("the ANSWER is "); while(i<=10){ i++; System.out.println(i);}}} |
|