Computer Science, asked by singhakansha445, 3 months ago

write a program to generate first multiples of number from 1 to the limit input by the user

plz help I need this answer urgently​

Answers

Answered by MalayaDhal
3

Explanation:

for(a=1;a<=n;a++)

{

m=m*a;

System.out.println (m):

}

Input you can do by yourself.

This is the main process.

Similar questions