题解 | #统计每个月兔子的总数#抄大佬代码
统计每个月兔子的总数
http://www.nowcoder.com/practice/1221ec77125d4370833fd3ad5ba72395
import java.util.*;
public class Main{
public static void main(String[] args){
Scanner sc=new Scanner(System.in);
while(sc.hasNext()){
int n=sc.nextInt();
int oneMonth=1;
int twoMonth=0;
int threeMonth=0;
int addValue=0;
for(int i=2;i<=n;i++){
threeMonth+=twoMonth;
twoMonth=oneMonth;
oneMonth=addValue;
addValue=twoMonth+threeMonth;
}
System.out.println(oneMonth+twoMonth+threeMonth);
}
}
}