個人相片
情人節作業
100資專1119 胡詠宜發表於2012年 03月 14日(三.) 17:21
 

//10031119胡詠宜


#include<stdio.h>
#include<stdlib.h>

int main()
{
    int N,i,A[50],j,k;
   
    struct student
    {
           char name[20];
           char id[10];
           int mid,final,score;
           double S;
    }st[50];
   
    printf("學生人數\n");
    scanf("%d",&N);
   
   
    for(i=1;i<=N;i++)
    {
         printf("名字 學號 期中考成績 期末考成績 平時成績:\n");
         scanf("%s %s %d %d %d",&st[i].name,&st[i].id,&st[i].mid,&st[i].final,&st[i].score);
   
         st[i].S=0.3*st[i].mid+0.3*st[i].final+0.4*st[i].score;
    }
   
  
  
    for(i=1;i<=N*N;i++)
    {
         if(st[i].S<st[i+1].S)
         {
               A[i]=st[i].S;
               st[i].S=st[i+1].S;
               st[i+1].S=A[i];
         }
         
    }
   
   
   
   
   
   
   
    printf("*****Out Put*****\n");
   
   
    for(i=1;i<=N;i++)
    {
        
         printf("%s(%s) 的學期成績:%.2lf\n",st[i].name,st[i].id,st[i].S);
    }
    
   
    
   
    system ("pause");
    return 0;
}