柠檬试题库
search
首页
计算机
公务员
驾照
关于
share
该市2013年1-7月份规模以上工业增加值约比2011年同期增长了()。
A.1.4%
B.13.4%
C.22.6%
D.23.9%
热度🔥3
参考答案:D
解析:
【试题来源】
2014年上海(B卷)《行测》真题
【解析】两年混合增长率,2013年1-7月比2011年增长一定大于12%+(12%-1.4%)=22.6%,大于此数的只有D。
复制题目向AI提问
content_copy
content_copy
扫码免费计算机二级刷题
2025年计算机等级考试题库
推荐
有以下程序 #include #include struct A { int a; char b[10]; double c; }; void f(struct A t); main() { struct A a={1001,"ZhangDa",1098.0}; f(a); printf("%d,%s,%6.1f\n", a.a,a.b,a.c); } void f(struct A t) { t.a=1002; strcpy(t.b,"ChangRong"); t.c=1202.0; } 程序运行后的输出结果是
下列叙述中正确的是