我的代码遇到了一些麻烦

时间:2016-12-27 21:02:22

标签: c

我的代码遇到了一些麻烦。我正在运行代码,我把像马德里这样的团队 - 巴萨,然后在文件中只显示马德里。否则,如果我只放置Barça,则该文件无法识别'ç'。

while (camp<5) {
  printf("Altere Jogos da Liga dos Campeões %d: ", camp+1);
  scanf("%s", futebol[camp].campeoes);
  while (getchar() != '\n');
  camp++;
}

feventosDesportivosFutebol = fopen("EventosDesportivosFutebol.txt", "w");
if (feventosDesportivosFutebol != NULL) {
  fprintf(feventosDesportivosFutebol, "\n\nLiga dos Campeões:\n\n");
  for (camp = 0; camp<5; camp++) {
    fprintf(feventosDesportivosFutebol, "%s\n", futebol[camp].campeoes);
  }
}
fclose( feventosDesportivosFutebol);

有人可以帮助我吗?

0 个答案:

没有答案