本帖最后由 欧阳宇 于 2015-5-1 19:21 编辑
class ForForDemo
{
public static void main(String[] args)
{
for(int x = 1;x<=9;x++)
{
for(int y =1;y<=9;y++)
{
System.out.print(y+"×"+x+"="+y*x+"\t");
}
System.out.println();/*刚开始我没在意,此语句的print后面我没加ln结果编译的时候一直出错,提示:对于print(没有参数),找不到合适的方法*/
}
}
}
|
|