鱼C论坛

 找回密码
 立即注册
查看: 765|回复: 2

[已解决]C语言题目

[复制链接]
发表于 2020-5-5 17:28:43 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
请问这道题目怎么用C语言写,我上传了图片,感谢大噶 作业(奖学金).png 作业(奖学金1).png
最佳答案
2020-5-5 20:10:28
#if 0
        By Cool_Breeze
        Dev-C++ 5.11
        x.c
#endif
 
#include <stdio.h>
#include <string.h>

void sawp(float* p1, float* p2,short len);
int main(void)
{
        static float Achievement[300][5];
        //0学号,1语文,2数学,3英语,4三科总和;
        short n=0;
        scanf("%d",&n);
        getchar();
        register short i=0;
        for (i=0;i<n;i++)
        {
                Achievement[i][0]=i+1; 
                scanf("%f %f %f",&Achievement[i][1],&Achievement[i][2],&Achievement[i][3]); 
                getchar();
                Achievement[i][4]=Achievement[i][1]+Achievement[i][2]+Achievement[i][3];
        }
        //sort 
        register short j=0;        
        for (i=0;i<n-1;i++)
                for (j=i+1;j<n;j++)
                {
                        if (Achievement[j][4] > Achievement[i][4])
                        {
                                sawp(&Achievement[i][0],&Achievement[j][0],5);
                                continue;
                        }
                        else if (Achievement[j][4] == Achievement[i][4])//总成绩相等 
                        {
                                if  (Achievement[j][1] == Achievement[i][1])//语文相等 
                                {
                                        if (Achievement[j][0] > Achievement[i][0])// 比较学号
                                        sawp(&Achievement[i][0],&Achievement[j][0],5);
                                        continue;
                                }
                                else if (Achievement[j][1] > Achievement[i][1])
                                {
                                        sawp(&Achievement[i][0],&Achievement[j][0],5);
                                        continue;
                                }
                        }
                }
                        
                                
         for (i=0;i<5;i++)//前5名 
                 printf("%f %f\n",Achievement[i][0],Achievement[i][4]);
        return 0;
}
void sawp(float* p1, float* p2,short len)
{
        register float t=0;
        for (;len>0;p1++,p2++,len--)
                t=*p1,*p1=*p2,*p2=t;
}
6
90 67 80
87 66 91
78 89 91
88 99 77
67 89 64
78 89 98
6.000000 265.000000
4.000000 264.000000
3.000000 258.000000
2.000000 244.000000
1.000000 237.000000

--------------------------------
Process exited after 11.32 seconds with return value 0
请按任意键继续. . .
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-5-5 20:10:28 | 显示全部楼层    本楼为最佳答案   
#if 0
        By Cool_Breeze
        Dev-C++ 5.11
        x.c
#endif
 
#include <stdio.h>
#include <string.h>

void sawp(float* p1, float* p2,short len);
int main(void)
{
        static float Achievement[300][5];
        //0学号,1语文,2数学,3英语,4三科总和;
        short n=0;
        scanf("%d",&n);
        getchar();
        register short i=0;
        for (i=0;i<n;i++)
        {
                Achievement[i][0]=i+1; 
                scanf("%f %f %f",&Achievement[i][1],&Achievement[i][2],&Achievement[i][3]); 
                getchar();
                Achievement[i][4]=Achievement[i][1]+Achievement[i][2]+Achievement[i][3];
        }
        //sort 
        register short j=0;        
        for (i=0;i<n-1;i++)
                for (j=i+1;j<n;j++)
                {
                        if (Achievement[j][4] > Achievement[i][4])
                        {
                                sawp(&Achievement[i][0],&Achievement[j][0],5);
                                continue;
                        }
                        else if (Achievement[j][4] == Achievement[i][4])//总成绩相等 
                        {
                                if  (Achievement[j][1] == Achievement[i][1])//语文相等 
                                {
                                        if (Achievement[j][0] > Achievement[i][0])// 比较学号
                                        sawp(&Achievement[i][0],&Achievement[j][0],5);
                                        continue;
                                }
                                else if (Achievement[j][1] > Achievement[i][1])
                                {
                                        sawp(&Achievement[i][0],&Achievement[j][0],5);
                                        continue;
                                }
                        }
                }
                        
                                
         for (i=0;i<5;i++)//前5名 
                 printf("%f %f\n",Achievement[i][0],Achievement[i][4]);
        return 0;
}
void sawp(float* p1, float* p2,short len)
{
        register float t=0;
        for (;len>0;p1++,p2++,len--)
                t=*p1,*p1=*p2,*p2=t;
}
6
90 67 80
87 66 91
78 89 91
88 99 77
67 89 64
78 89 98
6.000000 265.000000
4.000000 264.000000
3.000000 258.000000
2.000000 244.000000
1.000000 237.000000

--------------------------------
Process exited after 11.32 seconds with return value 0
请按任意键继续. . .
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-5-5 21:20:08 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-14 01:16

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表