0

在我开始我的问题之前,我想声明几件事: - 这不是本网站上已有问题的副本。但是,在类似的行上碰巧有一个问题,我仍然不“确切地”理解输入输出是如何完成的。如,回答者说代码有

int main(int argc, int argv**)
{
}

但是,在网站上发布的解决方案中,甚至没有使用。一个例子就是这个问题https://code.google.com/codejam/contest/1460488/dashboard#s=p0&a=0。(说方言。我确实使用 ubuntu 终端并尝试按照How can I do file i/o without fstream for 诸如 google code jam 之类的比赛的指示进行操作?。结果我的输出文件中没有写入任何内容。我可以更好地指导吗?如何做到这一点。这不是我已经完成的作业。我只需要知道如何在 linux 终端中进行输入输出。

我还提供了我的代码:-

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

#define DEBUG 1
#define printd if (DEBUG) printf

char cipher[26] =     {'y', 'h', 'e', 's', 'o', 'c', 'v', 'x', 'd', 'u', 'i', 'g', 'l', 'b', 'k', 'r', 'z', 't', 'n', 'w', 'j', 'p', 'f', 'm', 'a', 'q'};  

int main()
{
  int count, j;
  scanf("%d\n", &count);
  for (j=0;j<count;j++)
  {
    printf("Case #%d: ",j+1);
    translate();
    printf("\n");
  }
}
void translate()
{
  char c;
  scanf("%c", &c);
  while (c != '\n')
  {
    if (c == ' ')
      printf(" ");
    else
    {
      int index = c - 'a';
      if (index >=0 && index <= 26)
      {
        printf("%c", cipher[index]);
      }
    }
    scanf("%c", &c);
  }
}

谢谢你。

4

1 回答 1

1

将文件编译为 foo 后,您可以执行以下操作:

./foo < input > output

这将读取输入并将您使用 printf 编写的所有内容写入输出。

于 2013-04-07T19:21:43.740 回答