标题:对着书抄的简单代码,也错了!
取消只看楼主
lijiong520
Rank: 1
等 级:新手上路
帖 子:154
专家分:0
注 册:2007-5-21
 问题点数:0 回复次数:0 
对着书抄的简单代码,也错了!

3.
跟着书上抄的还出现错误,代码如下:
import Javax.swing.JOptionPane;
public class BreakLabelDemo {
public static void main (String args [])
{
String output="";
stop;
{
for (int row=1;row<=10;row++)
{
for (int column=1;column<=5;column++)
{
if (row==5)
break stop;
output+="* ";
}
output+="\n" ;
}
output+="\nLopps terminated normally";
}
JOptionPane.showMessageDialog (null,output,"Testing break with a label",JOptionPane.INFORMATION_MESSAGE);

System.exit (0);

}
}


错误信息:
D:\XX>javac BreakLabelDemo.java
BreakLabelDemo.java:6: 不是语句
stop;
^
1 错误

大哥们看看咋会错了!

搜索更多相关主题的帖子: 代码 
2007-10-12 11:17



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-176981-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.200078 second(s), 10 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved