程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> scanf-for 循環中的那三行並排的輸入語句 錯了嗎?

scanf-for 循環中的那三行並排的輸入語句 錯了嗎?

編輯:編程綜合問答
for 循環中的那三行並排的輸入語句 錯了嗎?

#include
#include
struct Student
{
int num;
char name[20];
float score;
};
int main()
{
struct Student stu[100];
struct Student t;
int i=0,n;
int j,k;
scanf("%d",&n);
for(;i<n;i++)
{
scanf("%d",&stu[i].num);
gets(stu[i].name);
scanf("%.2f",&stu[i].score);
}

for(i=0;i<n-1;i++)
{
    k=i;
    for(j=i+1;j<n;j++)
        if(stu[j].score>stu[k].score)
            k=j;
    t=stu[k];
    stu[k]=stu[i];
    stu[i]=t;

}
for(i=0;i<n;i++)
{
    printf("%3d %5s %6.2f\n",stu[i].num,stu[i].name,stu[i].score);
}

}

最佳回答:


是不是沒達到你的效果?語句錯沒錯,編譯就知道。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved