gpt4 book ai didi

c - Eclipse CDT 火星 : Input from a file

转载 作者:行者123 更新时间:2023-11-30 15:13:27 26 4
gpt4 key购买 nike

我最近安装了 Eclipse CDT Mars 版本来运行 C 程序。我在从文件获取输入时遇到问题。所以,我有一个如下所示的程序:

int main(void) {

//Declarations
int number_of_segments;
int k_constraint;
segment_node *ptr_to_segment_array, *ptr_to_segment_sorted_array;
int no_of_coordinates;
int *ptr_to_solution_array;
int *ptr_to_list_of_segment_identifiers_currently;
int no_of_identifiers_currently=1;
int i,j=1,k=0, l=0;

//setvbuf(stdout, NULL, _IOLBF, 0);
//Input
printf("Enter the number of segments\n");
scanf("%d", &number_of_segments);
printf("Enter the k constraint \n");
scanf("%d", &k_constraint);

no_of_coordinates = number_of_segments*2;
//Dynamically allocate memory to the Array
ptr_to_segment_array = (segment_node*)malloc(sizeof(segment_node)*no_of_coordinates);
ptr_to_segment_sorted_array = (segment_node*)malloc(sizeof(segment_node)*no_of_coordinates);
ptr_to_solution_array = (int*)malloc(sizeof(int)*no_of_coordinates);
ptr_to_list_of_segment_identifiers_currently = (int*)malloc(sizeof(int)*number_of_segments);

/*Now, input the individual segments's coordinates from left to right
** while also assigning the unique numbers to an individual segments' coordinates*/
printf("Enter the coordinates of segments from left to right \n");
for(i=0; i<no_of_coordinates; i++,j++){
scanf(" %d", &(ptr_to_segment_array[i].coordinate));
if(j==1){
ptr_to_segment_array[i].position = 'l';
ptr_to_segment_array[i].identifier = i+1;
}
else if(j==2){
ptr_to_segment_array[i].position = 'r';
ptr_to_segment_array[i].identifier = i+1;
}
if(j==2){
//Reset
j=1;
}

}
return 0;
}

嗯,当然这不是整个程序。这就是它的一瞥。问题是 scanf 语句应该接受输入,而我希望从文件中获取输入。因此,我执行了以下操作:

  1. 首先,我在工作区目录本身中创建了一个包含以下内容(输入)的文本文件。
    3
    2
    -3
    2
    0
    5
    3
    8
  2. 然后,我将 Eclipse 配置为从控制台获取输入。 enter image description here

请注意,编码已设置为 MS932(默认)

现在,我构建它并调试它。我进入输入步骤。然后,我等了几分钟,什么也没发生。就是这样。该程序似乎花费了很长时间,但控制没有移至下一行。

现在,您可能会认为程序本身存在一些错误,是的,可能是这样,但我也在 Ideone.com 上使用自定义输入运行了该程序,并且它确实接受了输入。另外,我使用控制台的输入运行了这个程序,它确实一步一步正确地接受了输入。

那么,为什么它不以这种方式直接从文件中获取输入呢?是记事本/Eclipse 还是其他的编码问题?

感谢任何帮助。
顺便说一句,如果有人想要完整的程序,我很乐意提供。它不是一些专有内容。我纯粹出于教育目的而写作,作为解决某些问题的方法。

最佳答案

我还没有看到你告诉你的程序从文件中读取。所以它只是等待你的输入。
您应该在开头添加此内容:

freopen("input.txt", "r", stdin);

它的作用:它重新打开stdin文件描述符并将input.txt附加到它。它附加它以供阅读 - 第二个参数是 "r"

但是如果您希望能够从控制台和文件中读取内容,则需要再添加一个:

FILE *in;
in = fopen("input.txt", "r");

您应该将 scanf(...) 替换为 fscanf(in, ...)

fscanf(in, "%d", number);

关于c - Eclipse CDT 火星 : Input from a file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34574596/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com