hehe
这不是菲波那奇数列么?
我也发个 呵呵
#include<stdio.h>#include<math.h>
void main(void)
{
int a,b,t,tt,temp;
scanf("%d,%d",&a,&b);
t=a+b;
tt=a-b;
tt=abs(tt);
while(t%2)//处理 奇 偶&偶 奇
{
tt++;
break;
}
temp=t*(tt/2);
while(!(t%2))//处理 奇 奇& 偶 偶
{
temp+=(t/2);
break;
}
printf("%d\n",temp);
}
a--b共有: 1 5 1 6 2 5 2 6
奇 奇 奇 偶 偶 奇 偶 偶
四种情况。其中奇 偶&偶 奇 奇 奇& 偶 偶 分别需要不同的处理。