The reason why we often appear to know more than many great scientists a few hundred years ago is because many great minds ____what they knew. And that’s why the professor places great emphasis on books, saying that they are man’s ____, because no other ____is able to pass on its experience in writing.
查看答案
The professors divides the 16 ____hours of ____people more or less into two equal parts. He says that in the first eight hours, people usually are busy making ____. It is in the other 8 hours that he begins to look for things that really make them human. And that is what education is ____.
The professor thinks that those who are only interested in learning a trade are ____of becoming a new “species.” He calls them ____and ____, meaning uncivilized people, although they may know how to push buttons and run machines.
【单选题】若要实现total=1+2+3+4+5求和,以下程序段错误的是( )
A. int i=1,total=1; while(i<5) { total+=i; i+=1;}
B. int i=1,total=0; while(i<=5) { total+=i; i+=1; }
C. int i=0,total=0; while(i<5) { i+=1; total+=i; }
D. int i=0,total=0; while(i<=5) { total+=i; i+=1; }
【单选题】有以下程序 #include main() { int i=1,k=0; for( ; i<6 ; ) { switch(i%3) { case 0: k++; case 1: k++; break; case 2: k++; continue; } i+=1; } printf("%d\n",k); } 程序的运行情况是
A. 形成无限循环
B. 输出6
C. 输出5
D. 输出4