Update 'cv3/program.c'
This commit is contained in:
parent
48522bc777
commit
f56738976e
@ -1,25 +0,0 @@
|
|||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
int main() {
|
|
||||||
float x;
|
|
||||||
float coefficient;
|
|
||||||
float result = 0;
|
|
||||||
int exponent = 0;
|
|
||||||
|
|
||||||
// Nacitanie hodnoty x
|
|
||||||
if (scanf("%f", &x) != 1) {
|
|
||||||
printf("Chyba: Nespravny vstup pre hodnotu x.\n");
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Nacitanie koeficientov a vyhodnotenie polynomu
|
|
||||||
while (scanf("%f", &coefficient) == 1) {
|
|
||||||
result += coefficient * pow(x, exponent);
|
|
||||||
exponent++;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Vypis vysledku
|
|
||||||
printf("Vysledok je: %.2f\n", result);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user