给大家分享一道今天做的for循环的题:
class Tist7 {
public static void main(String[] args) {
int corut = 1;
int sum=0;
for (x = 1;x <=12 ;x++){
if (x%2==0) {
sum = corut + sum; //sum:是记录双月分的兔子总数
System.out.println(x+"月有"+sum+"对兔子"+"共有:"+sum*2+"只兔子");
}else {
corut = sum + corut;//corut:是记录单月分的兔子的总数。
System.out.println(x+"月有"+corut+"对兔子"+"共有:"+corut*2+"只兔子");
}
}
}
} |
|