pvjc24/cv3/program.c

21 lines
271 B
C
Raw Normal View History

2024-02-29 13:23:40 +00:00
#include <stdio.h>
#define SIZE 10
int main() {
2024-03-04 12:55:19 +00:00
char coefs[SIZE] = {0} ;
2024-02-29 13:23:40 +00:00
int x = 0;
2024-03-04 12:55:19 +00:00
int input;
2024-02-29 13:23:40 +00:00
int count = 0;
2024-03-04 12:55:19 +00:00
while (input != EOF || input != '\n'){
coefs[SIZE] = input;
count ++;
}
printf("%d\n", coefs[SIZE]);
2024-02-29 13:23:40 +00:00
return 0;
}