Computer Science, asked by misty46, 11 months ago

please check my program guys
if any error found in this program so please reply find please please

Attachments:

Answers

Answered by kshantanu2004
0

I found 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=2

Output:

2 * 1 = 2

2 * 2 = 4

.

.

.

Hope it helped

Kumar Shantanu

Similar questions