参考别人的代码

简单错误记录

http://www.nowcoder.com/questionTerminal/2baa6aba39214d6ea91a2e03dff3fbeb

#include<stdio.h>
#include<string.h>

struct list{
    char name[200];
    int number;
    int times;
};

int main(void){
    char cin[200];
    int num, head = 0;
    struct list lists[100]={{{0}, 0, 0}, {{0}, 0, 0}, {{0}, 0, 0}, {{0}, 0, 0}, 
                         {{0}, 0, 0}, {{0}, 0, 0}, {{0}, 0, 0}, {{0}, 0, 0}};
    while(scanf("%s  %d", &cin, &num)!=EOF){
        char *p = strrchr(cin, '\\');
        int i, len = strlen(++p);
        p =  len > 16 ? p + len - 16 : p;

        for(i=0; i<head; i++)
            if(strcmp(lists[i].name, p)==0 && num==lists[i].number)
               break;
        if(i==head){
            strcpy(&lists[head].name, p);
            lists[head].times = 1;
            lists[head].number = num;
            head += 1;
        }else
            lists[i].times += 1;
    }
    int count = head - 8>0 ? head - 8 : 0;
    for(int i=count; i<head; i++)
        printf("%s %d %d\n", lists[i].name, lists[i].number, lists[i].times);
    return 0;
}
全部评论
你这个在牛客上无法编译啊,我写的代码自己本地跑完全没问题,到牛客上就无法编译,也是奇了怪了
点赞 回复 分享
发布于 2020-04-10 19:44
C语言吗,怎么可能啊,我刚跑完没问题啊
点赞 回复 分享
发布于 2020-04-10 20:45
哦,我在C++上调试的。。你这个在C上能跑通。。。。晕,这还带不兼容的???我自己在VS2019上能跑通的代码,放到牛客就无法编译 难受
点赞 回复 分享
发布于 2020-04-10 20:59
而且奇了怪的是,我自己IDE能正常输入输出的,放到牛客就无法编译,照着牛客的C++题解自己打了一遍,在牛客上倒是完美通过,但是回到我的VS2019就光输入不输出,。真的是。。。。。。糟糕的一天
点赞 回复 分享
发布于 2020-04-10 21:09
C语言和C++是不同的编译器,有些小的细节可能不太一样
点赞 回复 分享
发布于 2020-04-11 19:31

相关推荐

10-30 22:18
已编辑
毛坦厂中学 C++
点赞 评论 收藏
分享
2 3 评论
分享
牛客网
牛客企业服务