int表示整数
被int定义的i 可以表示数字1-5(当然也可以表示其他数字,只是这里只需要数字1-5而已)
i = 1;把1赋值给i
int num = 1; while (num <= 5){ System.out.println(num); num++; }