There _____ any apples on the table.[ ]
A. is
B. isn’t
C. are
D. aren’t
答案:D
下列关于农奴制改革后,俄国资本主义经济发展状况的表述,错误的是( )
A.19世纪80年代,资本主义农业逐渐成为农业的主要成分
B.1861年后,工业发展速度明显加快
C.19世纪后期,主要工业部门完成了向机器工厂的过渡
D.19世纪七八十年代,资本主义经济总体上超过美国和西欧国家
请补充main函数,该函数的功能是:从键盘输入两上字符串并分别保存在字符数组str1和str2中,用字符串str2替换字符串str1前面的所有字符,注意,str2的K度不大于str1,否则需要重新输入。 例如,如果输入strl;=“abced”,str2=“fk”,则输出“fkced”。 注意:部分源程序给出如下。 请勿改动主函数main和其他函数中的任何内容,仪在 main函数的横线上填入所编写的若干表达式或语句。 试题程序: #include<stdio.h> #include<string. h> main () { char strl [ 81], str2 [ 81 ]; char *pl=strl, *p2=str2; clrscr (); do {printf(" Input strl tn");gets (strl);printf(" Input str2 In");gets (str2); }while(【1】); while(【2】)*p1++=*p2++; printf(" Display strl \n"); puts (【3】) }