C)int、double、long D)int、float、long
(19)执行下列语句段后,输出字符“*”的个数是
for(int i=50;I>1;—i)cout<<”*”
A)48 B)49 C)50 D)51
(20)有如下程序段
inti=0,j=1;
int&r=i;D)++
(25)下列函数模板的定义中,合法的是
A)template
B)template class
C)template T
D)template T abs(T x){returm x<0-x;x;}
(26)在语句cin>>data;中,cin是
A)C++的关键字B)类名
C)对象名D)函数名
(27)有如下程序:
#include
using namespace std;
class test{
private:
int a;
public:
test(){cout<<”constructor”<