while循环结构 public class while_ { public static void main(String[] args) { int j = 1; while (j <= 5) { System.out.println("HelloWorld"); j++; } } }