0
import java.util.Scanner;

class TriNumbers {

    public static void main(String args[]) {
        int Count1=1, Count2=0;
        while (Count1>=1  Count2=0) {
            System.out.println(Count2+=Count1+"");
        }
    }
}
4

2 回答 2

1

&&在两次比较之间缺少:

Count1>=1  Count2=0

应该

Count1>=1  && Count2=0

此外,您正在使用=用于分配的单。用于==比较。所以最后这应该是你的条件:

while (Count1>=1  && Count2==0) 

注意:您可能需要替换&&为其他一些运算符(||、!= 等)。我只是用它来举例。

于 2013-11-08T03:49:08.083 回答
0

while(Count1>=1 Count2 = 0)<-这是错误..绝对没有意义。

你想做什么?

于 2013-11-08T03:49:07.663 回答