pvjc24/cv3/program.c
2024-03-04 14:29:52 +01:00

30 lines
422 B
C

#include <stdio.h>
#define SIZE 10
int main() {
int coefs[SIZE];
int x = 0;
int input;
int count = 0;
int length;
int result = 0;
while (count < SIZE && scanf("%d", &input) == 1) {
coefs[count] = input;
count++;
}
length = count;
for (int i = 1; i < length; i ++){
result += coefs[0]^i + coefs[i];
}
printf("Result: %d\n", result);
return 0;
}