+ 1
How can write program to calculate multiplication table for any number start from 1 and end for the number enter by user
by using loop
3 Answers
+ 4
Just some hints, try yourself.
you should use a for loop.
start from 1, end at user number.
print each line once by entering in loop
+ 3
here you go
consider input is in - x
for(int i =1;i<=10;i++){
System.out.println(x*i);}
Sorry for java, i dont know c++
+ 1
yes I do but my problem in multiplication table for 1.2.3.4