Initialization

This commit is contained in:
Kozar 2024-03-04 14:14:10 +01:00
parent eaa9c36182
commit 21c2ce23d0

View File

@ -3,21 +3,31 @@
#define SIZE 10
int main() {
char coefs[SIZE];
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 = length - 1; i >= 0; i--) {
result += coefs[0] * coefs[i];
}
printf("Coefficients: ");
for (int i = 0; i < count; i++) {
printf("%d ", coefs[i]);
}
printf("\nResult: %d\n", result);
return 0;
}