标题:这个程序问题怎么改啊兄弟姐妹们
只看楼主
祝你前程似锦
Rank: 1
等 级:新手上路
帖 子:40
专家分:0
注 册:2020-2-6
结帖率:70%
已结贴  问题点数:10 回复次数:2 
这个程序问题怎么改啊兄弟姐妹们
#include "stdio.h"
void main()
{
    struct student
        {
        int xuehao;
        char name[20];
        float score1;
        float score2;
        float score3;
        float ave;
        };
        struct student stu[10];
        int i,j,k,m,y,t;
        
        printf("请输入学生数\n");
        scanf("%d",&k);
        printf("请输入学生姓名学号成绩");
        for(i=0;i<k;i++)
        scanf("%s %d %f %f %f",stu[i].name,&stu[i].xuehao,&stu[i].score1,&stu[i].score2,&stu[i].score3);
        for(j=0;j<k;j++)
        printf("%s %d %.0f %.0f %0.f %.2f\n ",stu[j].name,stu[j].xuehao,stu[j].score1,stu[j].score2,stu[j].score3,(stu[j].score1+stu[j].score2+stu[j].score3)/3);
        printf("是否按学号查找\n",y);
            scanf("%d",&y);
        if(y>0)
        {   
            printf("请输入您所需要查找的学号:\n");
            scanf("%d",&m);
            for(i=0;i<k;i++)
            {
            if(m == stu.xuehao[i])
            t = m;
            printf("%d\n",t);

            
        }
            else break;
}

搜索更多相关主题的帖子: printf stu 兄弟 scanf float 
2020-10-16 15:11
nosnoy
Rank: 9Rank: 9Rank: 9
来 自:mcu
等 级:贵宾
威 望:14
帖 子:540
专家分:1158
注 册:2016-9-17
得分:10 
#include "stdio.h"
void main()
{
    struct student
        {
        int xuehao;
        char name[20];
        float score1;
        float score2;
        float score3;
        float ave;
        };
        struct student stu[10];
        int i,j,k,m,y,t;
        
        printf("请输入学生数\n");
        scanf("%d",&k);
        printf("请输入学生姓名学号成绩");
        for(i=0;i<k;i++)
        scanf("%s %d %f %f %f",stu[i].name,&stu[i].xuehao,&stu[i].score1,&stu[i].score2,&stu[i].score3);
        for(j=0;j<k;j++)
        printf("%s %d %.0f %.0f %0.f %.2f\n ",stu[j].name,stu[j].xuehao,stu[j].score1,stu[j].score2,stu[j].score3,(stu[j].score1+stu[j].score2+stu[j].score3)/3);
        printf("是否按学号查找\n",y)
            scanf("%d",&y);
        if(y>0)
        {   
            printf("请输入您所需要查找的学号:\n");
            scanf("%d",&m);
            for(i=0;i<k;i++)
            {
            if(m == stu.xuehao[i])
            t = m;
            printf("%d\n",t);

            
        }
            else break;
}

穷举是最暴力的美学
2020-10-16 16:13
nosnoy
Rank: 9Rank: 9Rank: 9
来 自:mcu
等 级:贵宾
威 望:14
帖 子:540
专家分:1158
注 册:2016-9-17
得分:0 
根据错误信息去改,读懂系统的报错

穷举是最暴力的美学
2020-10-16 16:15



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-503505-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.390675 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved