Computer Science, asked by ytaneja2005, 7 months ago

Write a program logic to print 12 to 25 tables(start from loop statements)​

Answers

Answered by AchintyaSharma
0

Answer:

In Java I can write . Just writing the logic.

Explanation:

int n; // the nk. till which u want table.

for(int f=1;f<=n;f++)

{

for(int i=1;i<=f;i++)

{

System.out.println( f+"×" I "=" (n×i));

}

}

Similar questions