十周目吧 关注:1贴子:3
  • 0回复贴,共1

#include<stdio.h>struct studen

只看楼主收藏回复

#include<stdio.h>
struct student
{
int num;
char name[20];
float a[2];
};
int fun(struct student stu[])
{ /*请在下方补充程序*/
}
int main()
{
struct student stu[5]={{202001,"Zheng lin",81.5,90.5},
{202002,"Wang lin",78.5,82.5},{202003,"Chen lin",88.5,76.5},
{202004,"Li lin",82.5,87.5},{202005,"Liu lin",77.5,72.5}};
int count;
count=fun(stu);
printf("The number beyond 60:%d\n",count);
return 0;
}


IP属地:广东来自Android客户端1楼2021-12-16 09:56回复