怎么没有发现你写的里面有 一共兔子的多少啊?我可以给你提供一个思路,我是学JAVA的、
二月
1 ===》1 一共有两对兔子
四月
2===》4 一共有四对兔子
六月
4====》8 一共有八对兔子
已经改好了,请注意对比:
program Project1;
var a,b,c,n,i:longint;
begin
readln(n);
a:=1;
b:=1;
c:=1;
for i:=3 to n do
begin
c:=a+b;
a:=b;
b:=c;
end;
writeln(c);
readln;
end.