99乘法表
package hey;
public class math99 {
public static void main(String[] args) {
//99乘法表
int sum;
for(int x=1;x<10;x++)
{
for(int y=1;y<10;y++)
{
sum=x*y;
System.out.print(x+ "*"+ y +"="+sum +" ");
}
System.out.println();
}
}
}
public class math99 {
public static void main(String[] args) {
//99乘法表
int sum;
for(int x=1;x<10;x++)
{
for(int y=1;y<10;y++)
{
sum=x*y;
System.out.print(x+ "*"+ y +"="+sum +" ");
}
System.out.println();
}
}
}
留言
張貼留言