D)在面向对象的程序设计中,结构化程序设计方法仍有着重要作用
(12)判断字符型变量ch是否为大写英文字母,应使用表达式
A)ch>='A'&ch<='Z'B)ch<='A'||ch>='Z'
C)'A'<=ch<='Z'D)ch>='A'&&ch<='Z'
(13)已知下列语句中的x和y都是int型变量,其中错误的语句
A)x=y++;B)x=++y;C)(x+y)++;D)++x=y;
(14)执行语句序列
int n;
cin>>n;
switch(n)
{case 1:
case 2:cout<<'1';
case 3:
case 4:cout<<'2';break;
default:cout<<'3';
}
时,若键盘输入1,则屏幕显示
A)1 B)2 C)3 D)12
(15)下列程序的输出结果是
#include
using namespace std;
int main()
{
char a[]="Hello,World";
char*ptr=a;
while(*ptr)
{
if(*ptr>='a'&&*ptr<='z')
cout< else cout<<*ptr; ptr++; } return 0; } A)HELLO,WORLD B)Hello,World C)hELLO,wORLD D)hello,world (16)已知:int m=10;在下列定义引用的语句中,正确的是 A)int&x=m;B)int y=&m; C)int&z;D)int&t=&m; (17)下列函数原型声明中错误的是