Galera porque se eu deixar o while assim a saida fica:
Visto que coloquei <=
1
2
3
4
5
6
7
8
9
10
11
public class TesteWhile {
public static void main(String[] args) {
// TODO Auto-generated method stub
int x = 0;
while(x <= 10) {
// x++;
// x = x + 1;
x += 1;
System.out.println(x);
}
}
}