1234567891011121314151617181920212223242526 |
- /**
- * ClassName: Test07
- *
- * @Author 爱扣钉-陈晨
- * @Create 2023/11/4 16:25
- * @Version 1.0
- */
- public class Test07 {
- /*
- do while循环
- */
- public static void main(String[] args) {
- int i = 0;
- do {
- System.out.println("hello world");
- i++;
- }while (false);
- //无条件执行一次
- }
- }
|