Initialization

This commit is contained in:
Kozar 2024-03-04 14:40:37 +01:00
parent 4fc410c322
commit aafef3075f

View File

@ -5,10 +5,10 @@
int main() { int main() {
int coefs[SIZE]; int coefs[SIZE];
int x = 0; int x = 0;
int input; int input = 0;
int count = 0; int count = 0;
int length; int length = 0;
int result = 0; double result = 0.0;
while (count < SIZE && scanf("%d", &input) == 1) { while (count < SIZE && scanf("%d", &input) == 1) {
coefs[count] = input; coefs[count] = input;
@ -23,7 +23,7 @@ int main() {
result = result * x + coefs[i]; result = result * x + coefs[i];
} }
printf("Result: %d\n", result); printf("Výsledok je: %.2lf\n", result);
return 0; return 0;
} }