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