豪斯假定领导者具有( )风格,追随者认同领导者及其任务。
A.制度化
B.权威化
C.官僚化
D.个性化
参考答案:D
按《金匮要略》所述,下列哪种病证不宜用汗法?()
A.痉病
B.湿病
C.暍病
D.肺胀
E.疟病
从键盘输入一组小写字母,保存在字符数组str中。请补充函数fun(),该函数的功能是:把字符数组str中字符下标为奇数的小写字母转换成对应的大写字母,结果仍保存在原数组中。 例如,输入“acegikm”,输出“aCeGiKm”。 注意:部分源程序给出如下。 请勿改动主函数main和其他函数中的任何内容,仅在函数fun()的横线上填入所编写的若干表达式或语句。 试题程序:#include <stdio.h>#define N 80void fun (char s[]) int i=0; while ( 【1】 ) if (i%2!=0) s[i]-= 【2】 ; 【3】 ; main () char str [N]; clrscr (); printf("\n Input a string:\n"); gets (str); printf("\n*** original string ***\n"); puts (str); fun (str); printf ("In*** new string ***\n"); puts (str);