今年是______年(填“平”或“闰”),全年共______天.
今年是2012年,
2012÷4=503;
没有余数,今年是闰年,全年有366天.
故答案为:闰,366.
下列现象,属于国家对内职能中的社会管理职能的是
A.运用宏观调控手段,干预社会经济生活
B.维护社会公共秩序,兴办公益事业
C.开展对外交流与合作
D.维护政治稳定
以下程序运行后的输出结果是【 】 int a=5; fun(int b) { static int a=10; a+=b++; printf("%d ",a); } main( ) { int c=20; fun(c); a+=c++; printf("%d\n",a); }