第二天课程整理 while 循环 why : while ' 循环' 的意思 what : while 无限循环 how : 1.基本结构 while + 条件 循环的代码 初识循环 while true: print('狼的诱惑') 先判断 条件 print('我们不一样') 如果是true 进行循环 print('月亮之上') 循环到底部,再次判断条件 条件成立继续循环 print('庐州月') print('人间'…
public class Student { private int no; private String name; private int age; public Student(int no, String name, int age) { // 带参数的构造方法 this.name=name; this.no=no; this.age=age; } public int getNo() { return no; } public void setNo(int no) { this.no…