package Demo;

public class loop {
public static void main(String[] args){
int x = 10;
while (x<20){
System.out.println(x);
x++;
}

do{
x++;
}while (x<20);
}
}

相关文章:

  • 2022-01-06
  • 2021-10-12
  • 2021-08-28
  • 2022-03-04
  • 2022-02-12
猜你喜欢
  • 2021-06-23
  • 2022-12-23
  • 2022-01-25
  • 2022-02-02
  • 2021-12-07
相关资源
相似解决方案