柠檬试题库
search
首页
计算机
公务员
驾照
关于
share
2011年河北省全年居民消费价格比上年上涨多少?()
A.5.7%
B.5.9%
C.6.0%
D.6.1%
热度🔥7
参考答案:A
解析:
【试题来源】
2012年河北《行测》真题
【解析】对2011年12个月的涨跌幅度求平均,即 (4.2+5+5.3+5.1+5.6+7+7.4+6.6+6.9+6.1+4.7+4.7)÷12=5.7。因此答案选择A选项。
复制题目向AI提问
content_copy
content_copy
扫码免费计算机二级刷题
2025年计算机等级考试题库
推荐
在“成绩表”中有字段:平时成绩、期中考试、期末考试和总评成绩。其中,总评成绩=平时成绩+期中考试×20%+期末考试×70%,在建表时应将字段“总评成绩”的数据类型定义为
有以下程序 #include main() { int a=0, b=0; for( ;a<5; a++ ) { if (a%2==0) continue; b += a; } printf("%d \n", b); } 程序的运行结果是
有以下程序 #include void f(int x[], int n) { if ( n> 1) { printf("%d,", x[n-1]); f(x, n-1); } else printf("%d,", x[0]); } main() { int z[6] = {1,2,3,4,5,6}; f(z,6); printf("\n"); } 程序的运行结果是