| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
共有 4926 人关注过本帖
标题:一个报错的修改 warning: ignoring return value of ‘scanf’, declared w ...
取消只看楼主 加入收藏
温柔
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2019-10-28
结帖率:60%
收藏
 问题点数:0 回复次数:0 
一个报错的修改 warning: ignoring return value of ‘scanf’, declared with attribute warn_
#include <stdio.h>

int main ()
{
    struct student
    {
        char name[10];
        char no[10];
        float score;
    };
    int n;
    int i;
    scanf("%d",&n);
    struct student stu[n];
    struct student max;
    struct student min;
    for (i=0;i<n;i++)
    {
    scanf("%s %s %f ",stu[i].name,stu[i].no,&stu[i].score);
    }
    max=stu[0];
    min=stu[0];
    for(i=0;i<n;i++)
    {
   
        if (max.score<stu[i].score)
            max = stu[i];
        if (min.score>stu[i].score)
            min=stu[i];
    }
    printf("%s %s\n",max.name,max.no);
    printf("%s %s\n",min.name,min.no);
    return 0;
}
a.c:13:2: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d",&n);
  ^~~~~~~~~~~~~~
a.c:19:2: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%s %s %f ",stu[i].name,stu[i].no,&stu[i].score);
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-11-12 21:52
快速回复:一个报错的修改 warning: ignoring return value of ‘scanf’, decla ...
数据加载中...
 
   



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

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016969 second(s), 11 queries.
Copyright©2004-2025, BC-CN.NET, All Rights Reserved