如何读取不确定长度的数字输入?

时间:2014-09-28 19:38:31

标签: c

我一直困在一个问题上,我需要在表单中读取用户的输入,

5 1.2 2.3 3.4 4.5 5.6

其中第一个整数是期望的浮点数,然后浮点数是我需要存储在该大小的数组中的值。我不断返回错误的代码是,

...
int i = 0, j, k;
float value, *ptr;
// For every element in inputArr...
while (i < inputLength) {
    printf("Enter the number of values in this data set, followed by the values: ");
    // Get the int value for array creation...
    scanf("%d ", &j);
    printf("%d", j);
    // Save it for the calculations later.
    *(lengths + i) = j;
    // Create dynamic array of floats.
    *(inputArr + i) = calloc(j, sizeof(float));
    ptr = *(inputArr + i);
    // For the rest of the input read the floats and place them.
    k = 0;
    while (k < j-1) {
        scanf("%f ", &value);
        *(ptr + k) = value;
        k++;
    }
    scanf("%f\n", &value);
    *(ptr + j - 1) = value;
    i++;
}

当我输入上面的输入时,这会引发分段错误。 有人可以通过告诉我我做错了什么来帮助我吗?

1 个答案:

答案 0 :(得分:1)

您不必在scanf调用中包含空格和字符串结尾。

scanf("%d", &j);

的i / o

scanf("%d ", &j);

scanf("%f", &value);

的i / o

scanf("%f\n", &value);