(C)一些题21

1.条件语句 while(x){...}中条件表达式 x 的等价写法是 B。
A. x==0 B. x!=0 C. x==1 D. x!=1

2.表达式 1!=2 && 3==5 的值是 C。
A. True B. False C. 0 D. 1

3。. _______125__________。
#include
int x;
void main()
{ x=5;
cude();
printf("%d\n",x);
}
cude()
{ x=x*x*x; }

4.有 n 个学生,每个学生的数据包括学号(num),姓名(name[20]),性别(sex),年龄(age),三门课的成绩
(score[3])。要求在 main 函数中输入这 n 个学生的数据, 然后调用一个函数 count,在该函数中计算出每个学生的总分和平均分, 然后打印出所有各项数据(包括原有的和新求出的)。

#include 
struct student
{
int num;
char name[20];
char sex;
2
int age;
float score[3];
float total;
float ave;
};
void count(struct student b[],int n)
{
int i,j;
for(i=0;i

你可能感兴趣的:(c语言,算法,开发语言)