本帖最后由 戎石锁问枫 于 2012-8-4 22:44 编辑
好吧 我现在去试试
OK了 大功告成 哈哈
class ttttt
{
public static void main(String[] args)
{
for(int a = 1,b = 1;a<10;b++)
{
System.out.print(b+"*"+a+"="+a*b+"\t");
if(a==b)
{
a++;
b=0;
System.out.println();
}
}
}
}
还有楼下的 , 你不用编写 if(j == 10)
return;
直接把for循环中的 a<10就OK了
|