中国古代财政支出的特点是消费性支出远远大于生产性公益性支出。
参考答案:对
智明在《英语报》上看到这样一篇文章:“Because a middle school student called Mary was jealous(嫉妒) of her girl classmate who lived in the same dormitory(宿舍) with her , Mary took some pictures(生活照片)of this classmate, and showed it to their classmates and told them something bad about her.”智明马上想到了在思品课堂上学到的知识,他认为Mary[ ]
①只是和她的同学开了一个玩笑而已,她的女同学不需要大惊小怪
②侵犯了她的女同学的隐私权
③侵犯了她的女同学的名誉权、肖像权
④只是不道德的行为
⑤不仅是不道德的行为,而且是违法行为
A、①②③④⑤
B、②③④⑤
C、②③⑤
D、①②③⑤
下列程序的功能是对输入的一行字符中的数字字符的字面值累加,输出此累加和,请填空。#include<stdio.h>#include<ctype.h>main(){ char c; int a,s=0; while( ______) if(isdigit(C) ) {a=c-’0’;s+=a;} printf("s=%d",s);}