1
This commit is contained in:
parent
cdc8609613
commit
336628341f
@ -13,24 +13,14 @@ double evaluate_polynomial(double x, double coefficients[], int degree) {
|
|||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
double x;
|
double x;
|
||||||
|
|
||||||
// Požiadanie o zadanie hodnoty x od používateľa
|
|
||||||
printf("Zadajte hodnotu x: ");
|
|
||||||
|
|
||||||
// Skontrolujeme, či sa hodnota x úspešne načíta
|
|
||||||
if (scanf("%lf", &x) != 1) {
|
if (scanf("%lf", &x) != 1) {
|
||||||
printf("Chyba: Neplatná hodnota x.\n");
|
printf("Chyba: Neplatná hodnota x.\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Zadefinovanie koeficientov polynómu
|
|
||||||
double coefficients[] = {57.0};
|
double coefficients[] = {57.0};
|
||||||
int degree = 1;
|
int degree = 1;
|
||||||
|
|
||||||
// Vyhodnotenie polynómu pre danú hodnotu x
|
|
||||||
double result = evaluate_polynomial(x, coefficients, degree - 1);
|
double result = evaluate_polynomial(x, coefficients, degree - 1);
|
||||||
|
|
||||||
// Výpis výsledku
|
|
||||||
printf("Vysledok je: %.2f\n", result);
|
printf("Vysledok je: %.2f\n", result);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user