#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void){
double sum = 0;
int ii = 0;
char buf[256], *token;
printf("Enter the numbers to average on a single line, separated by space and press enter when done\n");
fgets(buf, 255, stdin);
token = strtok(buf, " ");
while (token != NULL)
{
sum += atof(token);
ii++;
token = strtok("", " "); // Get next number
}
printf("Average is %lf", sum / (double)ii);
return 0;
}
上面的程序是查找用户给出的数字的平均值。该程序没有错误。我的代码有这些问题:
当你运行它时,它会要求你输入号码。由您找到平均值的空格分隔。当您输入以空格分隔的数字时 - 例如您输入 - 9080 5749 4343 8509 9790 ,那么它将打印第一个数字作为答案(即 9080)。如果您输入 9497 795 88,那么它将打印“Average is 9497.00000000”。如果您输入 27 59 05 那么它将打印“Average is 27.0000000”等等。
谁能告诉它有什么问题?我尝试用 getline() 替换代码的gets(),但它在输出时出现“Segmention Fault”错误。