练习for循环时
正确程序:
class text
{
public static void main(String[] args)
{
for(int x=0;x<5;x++)
{
for(int y=0;y<=x;y++)
{
System.out.print("*");
}
System.out.println();
}
}
}
运行的结果是:
*
**
***
****
*****
由于粗心,少写了一个大括号,程序如下
class text
{
public static void main(String[] args)
{
for(int x=0;x<5;x++)
{
for(int y=0;y<=x;y++)
System.out.print("*");
}
System.out.println();
}
}
运行的结果是:
***************
程序中
for(int x=0;x<5;x++)
{
for(int y=0;y<=x;y++)
System.out.print("*");
}
为什么没有出错啊?刚学习不懂,谁帮忙解释一下 ,谢谢! |