重要提示: 请勿将账号共享给其他人使用,违者账号将被封禁!
查看《购买须知》>>>
当前位置: 首页 > 远程教育 > 华南师范大学 > 文学
网友您好, 请在下方输入框内输入要搜索的题目:
搜题

题目

[主观题]

A student, ____________ name I don't know, came to see me.A.thatB.whoC.whoseD.whom

A student, ____________ name I don't know, came to see me.

A.that

B.who

C.whose

D.whom

查看参考答案
更多“A student, ____________ name I don't know, came to see me.A.thatB.whoC.whoseD.whom”相关的问题

第1题

Speaker A: Hello, ______
Speaker B: My name is Peter Brown and I left my hat in Mr. Johnson’s class this morning. Do you have it()
Speaker A: Hello, ______

Speaker B: My name is Peter Brown and I left my hat in Mr. Johnson’s class this morning. Do you have it()

A.this is the Unisex Hairdresser’s

B.this is the Mrs. Right’s Hat Shop

C.this is the Lost and Found

D.this is the Student Union

点击查看答案

第2题

阅读以下说明和C++程序,将应填入(n)处的字句写在答题纸的对应栏内。 【说明】 本程序用于评选优秀教

阅读以下说明和C++程序,将应填入(n)处的字句写在答题纸的对应栏内。

【说明】

本程序用于评选优秀教师和学生。当输入一系列教师或学生的记录后,将优秀学生及教师的姓名列出来。其类结构如下图所示:

【程序】

include <iostream.h>

include <stdio. h>

class base

{

protected:

char name[8];

public:

void getname(){cout<<"name:"; cin>>name;}

void printname(){cout<<"name:"<<name<<endl;}

(1)

};

class student: (2)

{

int num;

public:

void getnum()

{cout<<"score:"; cin>>num;}

bool isgood()

{return (3) }

};

class teacher: (2)

{

int num;

public:

void getnum()

{cout<<"paper:"; cin>>num;}

bool isgood()

{return (num>3)?true:false;}

void main()

{

base *p[50];

student *pstud;

teacher *ptech;

char ch;

int count=0;

do{

cout<<"input teacher(t) or student(s):";

cin>>ch;

if(ch=='s')

{

pstud=new student;

pstud->getname();

pstud->getnum();

p[count++]=pstud;

}

else if(ch=='t')

{

(4)

ptech->getname();

ptech->getnum();

p[count++]=ptech;

}

else

cout<<"input is wrong"<<endl;

cout<<"continue to iput(y/n)?";

cin>>ch;

}while(ch=='y');

for(int i=0;i<count;i++)

if((5))

p[i]->printname();

}

点击查看答案

第3题

阅读以下说明和C++程序,将应填入(n)处的字句写在对应栏内。 【说明】 设计一个评选优秀教师和学生的

阅读以下说明和C++程序,将应填入(n)处的字句写在对应栏内。

【说明】

设计一个评选优秀教师和学生的程序,其类结构如图6所示。当输入一系列教师或学生的记录后,将优秀学生及教师的姓名列出来。

【程序】

include<iostream.h>

include<stdio.h>

enum boolean {False,True}

class base

{

protected:

char name[8];

public:

void getname() {cout<<"姓名:" ;cin>>name; }

void printname() {cout<<"姓名:"<<name<<endU3

virtual boolean isgood() =0;

}

class student:(1)

{

int num;

public:

void getnum()

cout<<"考试成绩:" cin>>num;

boolean isgood() {return (2);{

};

class teacher:(3) public base

int num;

public:

void getnum()

cout<<"每年发表论文数:" ;cin>>num;

boolean isgood() {return (4);}

};

void main()

base* p[50];

student * pstud;

teacher * ptech;

char ch;

int count =0;

do

cout<<"输入教师(t)或学生(s):"

cin>>ch;

if(ch =='s')

{

pstud = new student;

pstud ->getname();

pstud ->getnum();

p[count ++ ] = pstud;

}

else if(ch == 't')

{

ptech = newteacher;

ptech - >getname()

ptech ->getnum();

p[count++]=ptech;

}

else

cout<<"输入错误<<endl;

cout<<"继续输入码(Y/n)";

cin>>ch;

} while(ch == 'y')

for(int i=0;i<count;i++)

{

if((5)) //若为优秀,则输出

p[i]->printname();

}

}

点击查看答案

第4题

Wh What is your Speaking Test1.docx name? Where are you from? Do you work or are you a stu
dent? What work do you do? /what do you study? What do you like most about your job/studies? Why? What is your name? Where are you from? Do you work or are you a student? What work do you do? /what do you study? What do you like most about your job/studies? Why? at is your name? ? ? Where are you from? ? ? Do you work or are you a student? ? ? What work do you do? /what do you study? ? ? What do you like most about your job/studies? Why?

点击查看答案

第5题

●试题七 阅读以下说明和C++程序,将应填入(n)处的字句写在答题纸的对应栏内。 【说明】 设计一个

●试题七

阅读以下说明和C++程序,将应填入(n)处的字句写在答题纸的对应栏内。

【说明】

设计一个评选优秀教师和学生的程序,其类结构如图6所示。当输入一系列教师或学生的记录后,将优秀学生及教师的姓名列出来。

图6

【程序】

include<iostream.h>

include<stdio.h>

enum boolean{False,True};

class base

{

protected:

char name[8];

public:

void getname(){cout<<"姓名:";cin>>name;}

void printname(){cout<<"姓名:"<<name<<endU3

virtual boolean isgood()=0;

}

class student: (1)

{

int num;

public:

void getnum()

{

cout<<"考试成绩:"; cin>>num;

}

boolean isgood(){return (2) ;}

};

class teacher: (3) public base

{

int num;

public:

void getnum()

{

cout<<"每年发表论文数:";cin>>num;

}

boolean isgood(){return (4) ;}

};

void main()

{

base*p[50 ];

student*pstud;

teacher*ptech;

char ch;

int count=0;

do

{

cout<<"输入教师(t)或学生(s):";

cin>>ch;

if(ch==′s′)

{

pstud=new student;

pstud->getname();

pstud->getnum();

p[count++]=pstud;

}

else if(ch==′t′)

{

ptech=newteacher;

ptech->getname();

ptech->getnum();

p[count++]=ptech;

}

else

cout<<"输入错误"<<endl;

cout<<"继续输入吗(Y/n)";

cin>>ch;

}while(ch==′y′);

for(int i=0;i<count;i++)

{

if((5) )∥若为优秀,则输出

p[i]->printname();

}

}

点击查看答案

第6题

— You’re a new student, aren’t you — _______.My name is Billy

A.No, I am

B.Yes, I am.

C.This is my sister.

D.Nice to meet you.

点击查看答案

第7题

School secretary: Good morning. Can I help you? Student: Yes, I'd like to enroll for the c
ourse. School secretary: ______

A.Thank you very much.

B.Nice to see you here.

C.Certainly. What's your name please?

D.Sorry. Can I see your passport please?

点击查看答案

第8题

My name is Dora. I’m American and I’m thirteen. I’m a student in No. 7 Middle School. I like music very much. I can play two instruments — the guitar and the piano. I play them very well and I’m in th

A.three

B.four

C.five

D.six

点击查看答案

第9题

若有如下程序:struct student{char name[10];float score[3];}stu[3]={{"lili",75,90,90}, {"liu

若有如下程序: struct student {char name[10]; float score[3];}stu[3]={{"lili",75,90,90}, {"liudan",90,85,75}; {"guoli",85,85,70}}; main() {int i;float sum=0,aver; for(i=0;i<3;i++) sum=sum+stu[i].score[1]; aver=sum/i; printf("%6.2f\n",aver); } 则程序运行后的输出结果是()

A.83.33

B.85

C.86

D.86.67

点击查看答案

第10题

include include typedef struct student{ int hum; char nameE20];
char sex; mt age; }LIST; LIST*create((1)) { LIST*head=NULL,*newNode,*tail; int i=0: for(i=0;i(2) ; printf(“\nlnput the information of student%d(name,hum,sex,age):”,i+1); scanf(“%s%d%e%d”,%newNode->name,&newNode->num,&newNode->sex,&newNode->age); newNode->next=NULL: if(i==0) (3); else tail->next=newNode: tail=newNode; } (4): } void OutputList(LIST*head) {LIST*p=head; while(p!=NULL){ printf(“kn%d%s%c%d”,p->num,p->name,p->sex,p->age; (5); } } void main() { LIST*L: L=create(10): outputList(L); }

点击查看答案
赏学吧APP
TOP
重置密码
账号:
旧密码:
新密码:
确认密码:
确认修改
购买搜题卡查看答案
购买前请仔细阅读《购买须知》
请选择支付方式
微信支付
支付宝支付
点击支付即表示你同意并接受《服务协议》《购买须知》
立即支付
搜题卡使用说明

1. 搜题次数扣减规则:

功能 扣减规则
基础费
(查看答案)
加收费
(AI功能)
文字搜题、查看答案 1/每题 0/每次
语音搜题、查看答案 1/每题 2/每次
单题拍照识别、查看答案 1/每题 2/每次
整页拍照识别、查看答案 1/每题 5/每次

备注:网站、APP、小程序均支持文字搜题、查看答案;语音搜题、单题拍照识别、整页拍照识别仅APP、小程序支持。

2. 使用语音搜索、拍照搜索等AI功能需安装APP(或打开微信小程序)。

3. 搜题卡过期将作废,不支持退款,请在有效期内使用完毕。

请使用微信扫码支付(元)
订单号:
遇到问题请联系在线客服
请不要关闭本页面,支付完成后请点击【支付完成】按钮
遇到问题请联系在线客服
恭喜您,购买搜题卡成功 系统为您生成的账号密码如下:
重要提示: 请勿将账号共享给其他人使用,违者账号将被封禁。
发送账号到微信 保存账号查看答案
怕账号密码记不住?建议关注微信公众号绑定微信,开通微信扫码登录功能
警告:系统检测到您的账号存在安全风险

为了保护您的账号安全,请在“赏学吧”公众号进行验证,点击“官网服务”-“账号验证”后输入验证码“”完成验证,验证成功后方可继续查看答案!

- 微信扫码关注赏学吧 -
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反赏学吧购买须知被冻结。您可在“赏学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
- 微信扫码关注赏学吧 -
请用微信扫码测试
温馨提示
每个试题只能免费做一次,如需多次做题,请购买搜题卡
立即购买
稍后再说
赏学吧