标题:读取字符串出错 求大佬告知哪里错了
只看楼主
yuanda199312
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2018-4-12
结帖率:50%
已结贴  问题点数:20 回复次数:3 
读取字符串出错 求大佬告知哪里错了
#include "stdafx.h"
#include <string.h>



int main()
{
    typedef struct
    {
        char TeamName[16];
        char Group[2];
        int GamesPlayed;
        int GamesWon;
        int GamesDrawn;
        int GamesLost;
        int GoalsFor;
        int GoalAgainst;
        int Points;
    }team_t[32];

    FILE    *stream, *stream2;     // variable name
    char teamname[16];
    char group[2];
   


    errno_t    err;
    err = fopen_s(&stream, "C:\\Users\\User\\Desktop\\2018\\engg1003\\c3270010PI2\\c3270010PI2\\match.dat", "r");    //oprn the read file and check the file open or not
    if (err == 0)
    {
        printf("The    file    myFile.dat    was    opened\n");
    }
    else
    {
        printf("The    file    myFile.dat    wasn’t    opened\n");
    }

    while (!feof(stream))
    {



        fscanf_s(stream, "%s %c ",teamname,16,group,2); //scan and print the value of n,s from read file
        printf_s("%s %c \n",teamname );


        

    }
   
   
        return 0;
}



显示得不一样 求帮忙
搜索更多相关主题的帖子: int char FILE stream the 
2018-05-11 09:43
grmmylbs
Rank: 14Rank: 14Rank: 14Rank: 14
等 级:贵宾
威 望:54
帖 子:1409
专家分:5845
注 册:2016-2-14
得分:14 
printf_s("%s %c \n",teamname );//少了个参数
猜想应该是printf_s("%s %c \n",teamname, group);
2018-05-11 10:08
yuanda199312
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2018-4-12
得分:0 
回复 2楼 grmmylbs
谢谢哥,不过问题没解决。显示得还是一样的
2018-05-11 10:11
grmmylbs
Rank: 14Rank: 14Rank: 14Rank: 14
等 级:贵宾
威 望:54
帖 子:1409
专家分:5845
注 册:2016-2-14
得分:0 
你把文件发出来
2018-05-11 10:19



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




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

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