0
Please help me solve this
using for loop, write a program that displays "6 times" multiplication table; the output should look like this: 1x6=6,2x6=12,3x6=18 until reaches to.... 12x6=72. appreciate help very nuch. thanks in advance
6 Answers
+ 3
Try to begin and if you have problems, please ask here
+ 2
and work?
+ 2
Well done, you can do it, you only need always to try ;-)
+ 1
yeah I have solved it. thank u for trying to help me
+ 1
yeah I have solved it. thank u for trying to help me
0
public class app{
public static void main (String[]args){
for(int m=1; m<=12; m++){
for(int p= 6; p<=72; p=p+6){
System.out.println(m+"x6="+p);
}
}
}
}