InterviewSolution
Saved Bookmarks
| 1. |
Please check my program guys if any error found in this program so please reply find please please |
|
Answer» a few errors:1) There is no increment. After the LINE:t=n*i; Type n++2) BETTER to print this: System.out.println(n+" * "+i+" = "+t)So that it PRINTS,For example,n=2Output:2 * 1 = 22 * 2 = 4...Hope it helpedKumar Shantanu |
|