题目内容

行政领导者授权给下级的同时也意味着把责任交给了下级。

查看答案
更多问题

宪法规定我国公民对于任何国家机关和国家工作人员有提出批评和建议的权利。

A. 对
B. 错

Questions 41 to 44 are based on the following passage:Washington D.C. was the first city in history to be created solely for the purpose of governance.Following the Revolution, members of Congress had hotly debated the question of a permanenthome for themselves and for departments, such as the Treasury, the Patent Office, and so on, whicheven the sketchiest of centralgovernment would feel obliged to establish. In 1790, largely in order to put an end to congressionalbickering, George Washington was charged with selecting a site for the newly designated federaldistrict. Not much to anyone’s surprise but to the disappointment of many, he chose a tract of landon the banks of the Potomac River,a few miles upstream from his beloved plantation, MountVernon.The District of Columbia was taken in part from Virginia and in part from Maryland. At the timeit was laid out, its hundred square miles consisted of gently rolling hills, some under cultivation andthe rest heavily wooded, with a number of creeks and much swampy land along the Potomac. Thereis now a section of Washington that is commonly referred to as Foggy Bottom; that section bore thesame nickname a hundred and eighty years ago. Two port cities, Alexandria and Georgetown,flourished within sight of the new capital and gave it access by ship to the most important cities ofthe infant nation~harleston, Baltimore, Philadelphia, New York, Newport, Salem, and Portsmouth--and also to the far-off ports of England and the Continent. In 1790 a large part of the federal district was__

A. seashore
B. village squares
C. wilderness
D. a flourishing port

领导作风是指领导者在领导活动中表现出来的一贯态度和行为。

A. 对
B. 错

【程序功能】统计一个字符串中包含的字母串个数并找出其中最长的字母串。所谓字母串是指一个连续的字母序列(不区分大小写),字母串之间用非字母字符分隔。函数count的功能是统计p指向的字符串中包含的字母串个数,找出的最长字母串存放在pmax指向的数组中,函数返回字母串的个数。【测试数据与运行结果】测试数据:you are teaeher234too.屏幕输出:a=you are teacher234too.number is 4max string is:teacher【含有错误的源程序】#include #include #include int count(char p[],char pmax[]){ int j=0,k,m=0;char temp[100];while(*p){ while((!isalpha(*p)) && *p) p++;k=0;if(*p!=’\0’) m++;while(isalpha(*p))temp[k++]=*p++;temp[k]="\0";if(k { j=k;pmax=temp;}}return m;}void main(){ char a[100]="you are teacher234too.",max[100];int i;i=count(a[],max[]);if(i==0)printf("a=%S: No letter strings!\n",a);elseprinff("a=%s\nnumber is %d\nmax string is:%s\n",a,i,max);}【要求】1.将上述程序录入到文件myf1.c中,根据题目要求及程序中语句之间的逻辑关系对程序中的错误进行修改。2.改错时,可以修改语句中的一部分内容,调整语句次序,增加少量的变量说明或编译预处理命令,但不能增加其他语句,也不能删去整条语句。3.改正后的源程序(文件名myf1.c)保存在T:盘根目录中供阅卷使用,否则不予评分

答案查题题库