Topic: 哥哥姐姐们帮我看看这个错在哪了

  Print this page

1.哥哥姐姐们帮我看看这个错在哪了 Copy to clipboard
Posted by: wh5355
Posted on: 2009-03-31 21:16

public class Textzhishu {
public static void main(String args[]) {  
for(int i=101; i<200; i+=2){
boolean k = true;
  for(int j=2; j<i; j++){
  if(i%j == 0){
  k =false;
  break;
  }  
}
  if(!k) {continue;}
ystem.out.println("" + i);
}
}
}

这是一个求100到200之间的素数
我怎么运行不出来结果啊

2.Re:哥哥姐姐们帮我看看这个错在哪了 [Re: wh5355] Copy to clipboard
Posted by: zhangxin2010
Posted on: 2009-04-03 10:49

最后的输出语句有分号错误:
System.out.println(" "+i);

3.Re:哥哥姐姐们帮我看看这个错在哪了 [Re: wh5355] Copy to clipboard
Posted by: wuanfo
Posted on: 2009-04-07 09:41

这种错误编译器是会报错的吧?

4.Re:哥哥姐姐们帮我看看这个错在哪了 [Re: wh5355] Copy to clipboard
Posted by: yanglijuanylj
Posted on: 2009-04-07 16:52

只要把你的大括号改一下就可以了,像这样就没错了.
你有编译的时候注意下分号,直接粘的有时是汉语的,会出错的
public class Textzhishu{
public static void main(String args[]) {
for(int i=101; i<200; i+=2) {
boolean k = true;
for(int j=2; j<i; j++) { if(i%j == 0)
{ k =false; break; } }
if(!k)
System.out.println(" " +i);
}

}
}

5.Re:哥哥姐姐们帮我看看这个错在哪了 [Re: wh5355] Copy to clipboard
Posted by: 吾夲
Posted on: 2009-04-12 12:14

System.out.println(""+ i);
你把这个粘上去就行了,少了个S和分号错误

6.Re:哥哥姐姐们帮我看看这个错在哪了 [Re: wh5355] Copy to clipboard
Posted by: sunny9527
Posted on: 2009-07-30 17:05

运行时没报错吗
真稀奇


   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923