网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

B

How to Be a Winner

Sir Steven Redgrave

Winner of 5 Olympic Gold Medals

“In 1997 I was found to have developed diabetes (糖尿病) . Believing my career (职业生涯)was over, I felt extremely low. Then one of the specialists said there was no reason why I should stop training and competing. That was it----the encouragement I needed. I could still be a winner if I believed in myself. I am not saying that it isn’t difficult sometimes. But I wanted to prove to myself that I wasn’t finished yet. Nothing is to stand in my way.”

Karen Pickering

Swimming World Champion

“I swim 4 hours a day, 6 days a week. I manage that sort of workload by putting it on top of my diary. This is the key to success—you can’t follow a career in any field without being well-organized. List what you believe you can achieve. “Trust yourself, write down your goals for the day, however small they are, and you’ll be a step closer to achieving them.”

Kirsten Best

Poet & Writer

“When things are getting hard, a voice inside my head tells me that I can’t achieve something. Then, there are other distractions, such as family or hobbies. The key is to concentrate. When I feel tense, it helps a lot to repeat words such as ‘calm’, ‘peace’ or ‘focus’, either out loud or silently in my mind. It makes me feel more in control and increases my confidence. This is a habit that can become second nature quite easily and is a powerful psychological (心理的) tool.”

60. What does Sir Steven Redgrave mainly talk about?

A. Difficulties influenced his career.

B. Specialists offered him medical advice.

C. Training helped him defeat his disease.

D. He overcame the shadow of illness to win.


参考答案

更多 “ BHow to Be a WinnerSir Steven RedgraveWinner of 5 Olympic Gold Medals“In 1997 I was found to have developed diabetes (糖尿病) . Believing my career (职业生涯)was over, I felt extremely low. Then one of the specialists said there was no reason why I should stop training and competing. That was it----the encouragement I needed. I could still be a winner if I believed in myself. I am not saying that it isn’t difficult sometimes. But I wanted to prove to myself that I wasn’t finished yet. Nothing is to stand in my way.”Karen PickeringSwimming World Champion“I swim 4 hours a day, 6 days a week. I manage that sort of workload by putting it on top of my diary. This is the key to success—you can’t follow a career in any field without being well-organized. List what you believe you can achieve. “Trust yourself, write down your goals for the day, however small they are, and you’ll be a step closer to achieving them.”Kirsten BestPoet & Writer“When things are getting hard, a voice inside my head tells me that I can’t achieve something. Then, there are other distractions, such as family or hobbies. The key is to concentrate. When I feel tense, it helps a lot to repeat words such as ‘calm’, ‘peace’ or ‘focus’, either out loud or silently in my mind. It makes me feel more in control and increases my confidence. This is a habit that can become second nature quite easily and is a powerful psychological (心理的) tool.”60. What does Sir Steven Redgrave mainly talk about?A. Difficulties influenced his career.B. Specialists offered him medical advice.C. Training helped him defeat his disease.D. He overcame the shadow of illness to win. ” 相关考题
考题 ( 23 )下列语句组中,正确的是A ) char *s ; s= " Olympic ";B ) char s[7] ; s= " Olympic ";C ) char *s ; s= { " Olympic " } ;D ) char s[7] ; s= { " Olympic " } ;

考题 语句“printf(”a\bhow\’are\’y\\\bou\n”);”的输出结果是( )。A)a\bhow\'are\'y\\bouB)a\bhow\’are\’y\bouC)how'are'youD)ahow'are'y\bou

考题 语句"printf("a\bhow\'are\'y\\\bou\n");"的输出结果是( )。A.a\bhow\'are\'y\\bouB.a\bhow\'are\'y\bouC.how'are'youD.ahow'are'y\bou

考题 语句“printf("a\bhow\'are\'y\\\bou\n");”的输出结果是( )。A.a\bhow\'are\'y\\bouB.a\bhow\'are\'y\bouC.how'are'youD.ahow'are'y\bou

考题 下列语句组中,不正确的是( )。A.char *s;s="Olympic";B.char s[]="Olympic";C.char *s;s={"Olympic"};D.char s[]={"Olympic"};

考题 下列语句组中,正确的是A.char*s;s="Olympic";B.char s[7];s="Olympic";C.char*s;s={"Olympic"};D.char s[7];s={"Olympic"};

考题 阅读以下说明及Visual Basic程序代码,将应填入(n)处的字句写在对应栏内。[说明]下面的程序演示了根据随机产生的奖牌数,生成金银奖牌榜的过程。程序使用的排序法是简单排序法。以金牌得数为例,其思想是选择最大的元素,将它交换到最前面;然后对剩下的部分采用同样的方法,直到全部排序完成。程序界面中,左右两个文本框分别用于存放随机产生的奖牌数以及生成的奖牌榜,名为Text1和Text2,上下两个按钮分别名为Command1和Command2。代码中使用的量主要有:一维数组 cntries,用于存储10个国家的名称,二维数组medals,其元素medals(i,0)和medals(i,1)分别用于存放第i个(i从0开始)国家的金、银牌数目。[Visual Basic代码]Dim cntries(10) As String, medals(10,2) As Integer’随机产生奖牌数Sub newMedals()…… ’为数组cntries和medals赋值End Sub’输出奖牌榜Sub printOut(txt As (1) )Dim strResuh As String, i As IntegerstrResult=“国家” Chr(9) “金牌数” Chr(9) “银牌数” vbCrLfFor i=0 To 9strResult = strResult cntries(i) Chr(9) medals(i,0) Chr(9) medals(i,1) vbCrLfNexttxt.Text = strResultEnd Sub’交换两变量的值Sub exchange( (2) a As Variant, (2) b As Variant)Dim temp As Varianttemp = a: a = b: b = tempEnd Sub’随机产生并输出奖牌数Private Sub Command1_Click()newMedalsprintOut Text1End Sub’生成并输出奖牌榜Private Sub Command2_Click()Dim i,j, k As Integer, temp As StringFor i = 0 To 9 ’按金牌数排序j = i ’找到自第i个位置起全部数据中金牌得数最多者,记其下标为jFor k = i + 1 To 9If (3) Then j=kNextIf i < > j Then ’若i,j不等,则交换对应位置的国家名、金银牌数目exchange cntnes(i), entries(j)exchange medals(i, 0), medals(j, 0)exchange medals(i, 1), medals(j, 1)End IfNextFor i = 0 To 9 ’按银牌数进行二次排序j = iFor k = i + 1 To 9If medals(k,0) <> medals(j, 0) Then (4)If (5) Then j = kNextIf i < > j Thenexchange cntries(i), cntries(j)exchange medals(i, 1), medals(j, 1)End IfNextprintOut Text2End Sub

考题 下列语句组中,正确的是( )。A.char*s;s="Olympic";B.char sE73;s="Olympic";C.char*S;s={¨Olympic"};D.char sET3;s={"Olympic"};

考题 下列语句组中,正确的是( )。A.char*s;s=”Olympic”;B.char s[7];s=”Olympic”;C.char*s;s={¨Olympic”};D.char s[7];s={"Olympic”};

考题 下列语句组中,不正确的是( )。A)char*s;s-"Olympic";B)char s口="Olympic";C)char*s;s={"Olympic"};D)char s口={"Olympic"};