题目内容 (请给出正确答案)
[主观题]

I've been going home for lunch ever since I started school. I never liked eating in the ca

feteria(自助食堂) although in tile seventh grade, because all the other boys were doing it and thought it was cool. I washed dishes in the junior high school lunchroom once in a while in exchange for a free lunch. But I like going back to my own house at once.

Mom is always there; she had soup ready in the breakfast room by the time that Ann and Jim and I get home. Ann and Jim have never gone in for the cafeteria, either. Our house in only about a ten-minute walk from the school building, so we can make it back in plenty of time.

There's something about eating in the cafeteria--and not leaving the high school from morning until afternoon -- that feels a little like being in prison. By the end of the morning, I've got to get out of the building. And Mom never seems to mind fixing lunch for us; she never suggests that we eat in the cafeteria.

It's really the only time we have to be alone with her. In the morning Dad's there, and by the time I get home after messing around(混时间) after school, he's usually at home from work. So the time that Mom and I talk together is usually at lunch.

I feel sorry for the students who eat in the cafeteria every day. It would drive me mad, I don't know if their moms just don't like to cook for them in the middle of the day, or if they actually like the cafeteria and the cafeteria food.

When the author was in junior high school, ______.

A.he never ate in the cafeteria

B.he ate in the cafeteria sometimes but not often

C.he always went back for lunch

D.he often ate in the cafeteria

查看答案
如搜索结果不匹配,请 联系老师 获取答案
您可能会需要:
您的账号:,可能会需要:
您的账号:
发送账号密码至手机
发送
更多“I've been going home for lunch…”相关的问题

第1题

执行下列程序后的输出结果是() int fun(int x1,int x2) { int x;x1>x2?(x=3):(x=4);retu

执行下列程序后的输出结果是() int fun(int x1,int x2) { int x;x1>x2?(x=3):(x=4);return(x+x1); } main() { printf("%d\n",fun(7,8));}

A.9

B.10

C.11

D.12

点击查看答案

第2题

定义一个具有int型可变长形参的方法fun(),下列哪种写法是正确的?()

A.int fun(int x1, int x2, …) { … }

B.voidfun(int …x[ ]) { … }

C.int…fun(int x[ ]) { … }

D.voidfun(int …x) { … }

点击查看答案

第3题

下列程序的运行结果是: #include <stdio.h> int x1=30,x2=40; void sub(int x,int y) { x1=x;x=y;y=x1;} int main() { int x3=10,x4=20; sub(x3,x4); sub(x2,x1); printf(“%d,%d,%d,%d\n”,x3,x4,x1,x2); return 0; }

A.10,20,40,40

B.10,20,30,40

C.10,20,40,30

D.20,10,30,40

点击查看答案

第4题

下列程序的运行结果是()。 int x1=30, x2=40; sub(int x, int y) { x1 = x; x = y; y = x1; } int main(void) { int x3=10, x4=20; sub(x3, x4); sub(x2, x1); printf("%d,%d,%d,%d\n", x3, x4, x1, x2); return 0; }

A.10,20,40,40

B.10,20,30,40

C.10,20,40,30

D.20,10,30,40

点击查看答案

第5题

在JSP中,给定以下JSP代码片段,运行结果是()。 <% int x="5;" %> <% ! int x="7;" %> <%! int getx(){ return x; }%> <% out.print(“x1="”" x); %> <% out.print(“x2="”" getx()); %>

A.X1=5 X2=7

B.X1=5 X2=5

C.X1=7 X2=7

D.X1=7 X2=5

点击查看答案

第6题

#include <stdio.h> static int x=5; void f1() { x+=1; printf("x2=%d\n",x); } void f2() { int x=1; printf("x3=%d\n",x); } int main() { auto int x=3; printf("x1=%d\n",x); f1(); f2(); printf("x4=%d\n",x); return 0; }

A.x1=3

B.x2=6

C.x3=1

D.x4=3

点击查看答案

第7题

在JSP中,给定以下JSP代码片段,运行结果是()。 <% int x="5;" %> <%!int x="7;%"> <
;%!int getx() { return x; }%> <% out.print("x1=" + x); %&gt; &lt;% out.print(" x2=" + getX()); %&gt;&lt;br&gt; A、X1=7 X2=7&lt;br&gt; B、X1=5 X2=7&lt;br&gt; C、X1=7 X2=5&lt;br&gt; D、X1=5 X2=5&lt;br&gt;&lt;p class=" answer">

24、给定JSP文件代码如下: <%!static int i="0;int" j="0;%"> <% { out.print(i++); out.print(" "); } %>

A、什么也没有

B、0 1

C、3 4

D、1 2

点击查看答案

第8题

请写出下面程序的输出结果。 #include <stdio.h> static int x=5; void f1() { x+=1; prin

请写出下面程序的输出结果。 #include <stdio.h> static int x=5; void f1() { x+=1; printf("x2=%d,",x); } void f2() { int x=1; printf("x3=%d,",x); } int main() { auto int x=3; printf("x1=%d,",x); f1(); f2(); printf("x4=%d\n",x); return 0; }

点击查看答案

第9题

[图] 提示:补充横线上的代码,请使用英文半角输入,不要...

提示:补充横线上的代码,请使用英文半角输入,不要留空格及其他不可见字符。 #include <stdio.h> #include <string.h> int add(int x, int y) { return x + y; } int sub(int x, int y) { return x - y; } int mul(int x, int y) { return x * y; } int div(int x, int y) { return x / y; } int (*func[])(int ,int) = { add,sub,mul,div }; int num, curch; char chtbl[] = "+-*/()="; char corch[] = "+-*/()=0123456789"; int getach() { int i; while (1) { curch = getchar(); if (curch == EOF) return -1; for (i = 0; corch[i] && curch != corch[i]; i++); if (i < strlen(corch)) break; } return curch; } int getid() { int i; if (curch >= '0' && curch <= '9') { for (num="0;" curch>= '0' && curch <= 10 '9'; getach()) num="num" * + curch - '0'; return -1; } else { for (i="0;" chtbl[i]; i++) if (chtbl[i]="=" curch) break; getach(); i; int cal() x1, x2, x3, op1, op2, i="getid();" 4) x1="cal();" op1="getid();" (op1>= 5) return x1; i = getid(); if (i == 4) x2 = cal(); else x2 = num; op2 = getid(); while (!(op2 >= 5)) { i = getid(); if (i == 4) x3 = cal(); else x3 = num; if ((op1 / 2 == 0) && (op2 / 2 == 1)) x2 = (*func[op2])(x2, x3); else { x1 = (*func[op1])(x1, x2); x2 = x3; ____________________; } op2 = getid(); } return (*func[op1])(x1, x2); } void main() { int value; printf("Please input an expression:\n"); getach(); while (curch != '=') { value = cal(); printf("The result is : %d\n", value); printf("Please input an expression:\n"); getach(); } }

点击查看答案

第10题

有如下程序: #include <iostream.h> class x { protected: int a; public:x(){ a=1;} }; class x

有如下程序: #include <iostream.h> class x { protected: int a; public: x() { a=1; } }; class x1 : virtual public x { public: x1() { a+=1; cout<<a; } }; class x2 : virtual public x { public: x2() { a+=2; cout<<a; } }; class y : public xl,public x2 { public: y() { cout<<a<<end1; } }; int main() { y obj; return O; } 该程序运行后的输出结果是()。

A.1

B.123

C.242

D.244

点击查看答案
热门考试 全部 >
相关试卷 全部 >
账号:
你好,尊敬的上学吧用户
发送账号至手机
密码将被重置
获取验证码
发送
温馨提示
该问题答案仅针对搜题卡用户开放,请点击购买搜题卡。
马上购买搜题卡
我已购买搜题卡, 登录账号 继续查看答案
重置密码
确认修改
谢谢您的反馈

您认为本题答案有误,我们将认真、仔细核查,
如果您知道正确答案,欢迎您来纠错

警告:系统检测到您的账号存在安全风险

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

微信搜一搜
上学吧
点击打开微信
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反上学吧购买须知被冻结。您可在“上学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
微信搜一搜
上学吧
点击打开微信