()中国人民银行企业和个人征信系统正式对外提供服务。
查看答案
有关单位应当适时检测、维护其警报装置和应急救援设备、设施,使其处于良好状态,确保正常使用。()
写出程序的运行结果
include <stdio.h>
long fun(int n)
{ long s;
if(n==1||n==2) s=2;
else s=n+fun(n-1);
return s;
}
main()
{longx,y;
x=fun(1);y=fun(3);
printf("%ld\n%ld\n",x,y);
}
输出结果为:____________
_____________
阅读以下程序并填空。
该程序的功能是:计算1000以内(含1000)既能被3整除也能被7整除的自然数的个数n。
include <stdio.h>
main()
{int n=1,i=1;
while(①____________) ① ___________
{i++; if(②___________)n++; ②___________
}
printf("n=%d\n",③___________); ③___________
}