摘要: package struct; public class DoWhile { public static void main(String[] args) { int a =0; while (a<0){ a++; System.out.println(a);//条件不成立,无法输出内容 } Sys 阅读全文