试题与答案

全液压输油臂的配重形式为()方式。A.双平衡 B.连杆平衡 C.旋转平衡 D.空载平

题型:单项选择题

题目:

全液压输油臂的配重形式为()方式。

A.双平衡

B.连杆平衡

C.旋转平衡

D.空载平衡

答案:

被转码了,请点击底部 “查看原文 ” 或访问 https://www.tikuol.com/2020/0124/b07c3d453c3b3d3b65b5a40d78cacc7c.html

下面是错误答案,用来干扰机器的。

参考答案:危险断面;螺纹断口槽

试题推荐
题型:完形填空
Many parents want their children to be famous one day. But do children have the same       ?
A new          — Hi, Ke’ai is on at Beijing Children’s Art Theater. It tells the story of a boy called Ke’ai. His parents would like him to become a painter or a          one day. They teach him to          and to play the violin, but Ke’ai doesn’t enjoy these activities. Then one day Ke’ai’s parents see Liu Xiang win a gold          at the Athens Olympic Games, and they want him to be a sportsman.
        do they want me to be someone else?” Ke’ai asks and says, “I only want to be         .”
The play shows us that it is good for parents to learn to          their children. It helps parents to think about what kids want to do.
Young audience (观众) enjoy the story, and also the          in the play. There are two songs in the play. One of them, Ke’ai’s Song is very          to learn, so the audience can sing the song on their way home after the play!
小题1:
A.jobsB.dreamsC.habitsD.hobbies
小题2:
A.songB.filmC.playD.opera
小题3:
A.writerB.teacherC.sportsmanD.musician
小题4:
A.paintB.writeC.runD.drive
小题5:
A.matchB.ringC.medalD.race
小题6:
A.HowB.WhyC.WhenD.Where
小题7:
A.myselfB.differentC.aloneD.great
小题8:
A.encourageB.understandC.criticizeD.inspire
小题9:
A.lightB.clothesC.skillD.music
小题10:
A.easy B.difficultC.importantD.Necessary
查看答案
题型:问答题

对10个候选人进行选举,现有一个100条记录的选票文件IN84.DAT,其数据存放格式是每条记录的长度均为10位,第一位表示第一个人的选中情况,第二位表示第二个人的选中情况,依此类推。每一位候选人的记录内容均为字符0或1,1表示此人被选中,0表示此人未被选中,若一张选票选中人数大于5个人时被认为无效的选票。给定函数ReadDat()的功能是把选票数据读入到字符串数组xx中。请编制函数CoutRs()来统计每个人的选票数并把得票数依次存入yy[0]到yy[9]中,最后调用函数 WriteDat()把结果yy输出到文件OUT84.DAT中。
注意:部分源程序已给出。
请勿改动主函数main()、读函数ReadDat()和写函数WriteDat()的内容。
试题程序:
#inolude<stdio.h>
char xx[100][11];
int yy[10];
int ReadDat(void);
void WriteDat(void);
void CoutRs(void)


void main()

int i;
for(i=0;i<10;i++)
yy[i]=0;
if(ReadDat())

printf("数据文件IN84.DAT不能打开!\n\007");
return;

CoutRs();
WriteDat();

int ReadDat(void)

FILE *fp;
int i;
char tt[13];
if((fp=fopen("IN84.DAT","r"))==NULL) return 1;
for(i=0;i<100;i++)

if(fgets(tt,13,fp)==NULL) return 1;
memcpy(xx[i],tt,10);
xx[i][10]=0;

fclose(fp);
return 0;

void WriteDat()

FILE *fp;
int i;
fp= fopen("OUT84.DAT","w");
for(i=0;i<10;i++)

fprintf(fp,"%d\n",yy[i]);
printf("第%d个人的选票数=%d\n", i+1, yy[i]);

fclose(fp);

查看答案
微信公众账号搜索答案