简体   繁体   中英

How can I read a varying amount of integer input in C?

I will be getting three lines of input. The first line will give me 2 integers and the third line will give me 1 integer. But the second line can give me any number of integers ranging between 1 to 100. For example, the input could be:

2 1
5 6 1 9 2
10

or could be:

10 4
5 6
9

I can read the second line of integer input into an integer array for a fixed number of integers, but cannot do so for a varying number of integers. I suppose, in this case, I should use a while loop which will break when scanf() finds a newline. How do I code that?

  1. Read the line into a buffer ( @John Coleman ) using using fgets() or getline() .

  2. Parse the string looking for whitespace that may contain a '\\n' , exit loop if found. Then call strtol() or sscanf() to read the 1 number. Check that function's return value for errors too.

  3. Repeat above steps.

I am actually a newbie in programming and am unaware of most of the functions. The only string functions I know of are strlen() and strcmp() . And my i\\o function knowledge is limited to printf() and scanf() .

Anyhow, I solved my problem in this way:

int a[101];
int i, num;
char ch;

for (i = 0; i < 101; i++)
    a[i] = 0;

while (1)
{
    scanf("%d%c", &num, &ch);
    i = num;
    a[i] = num;
    if (ch == '\n')
        break;
}

This works! The value of num had to be equal to the value i because my program needed it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM