java中for循环输出0-10

2024-11-26 18:37:32
推荐回答(1个)
回答1:

for(int i =0; i < 11; i++){

System.out.println(i);
}