求助,这是什么鬼!!
#include<stdio.h>
int main()
{
long a=0,b=1,c;
long count;
while(c<=4000000)
{
c = a + b;
a = b;
b = c;
printf("%d,",c);
if (c % 2 == 0)
{
count = count + c;
}
}
print("%d\n",count);
return 0;
}
第20行,是printf,不是print 提示得好明显 {:10_245:} ...............
尴尬了
页:
[1]