7.3
This commit is contained in:
parent
d8248952ab
commit
9bccd9999f
@ -12,9 +12,12 @@ double evaluate_polynomial(double x, double coefficients[], int degree) {
|
||||
}
|
||||
|
||||
int main() {
|
||||
// Načítanie hodnoty 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) {
|
||||
printf("Chyba: Neplatná hodnota x.\n");
|
||||
return 1;
|
||||
@ -31,4 +34,4 @@ int main() {
|
||||
printf("Výsledok: %.2f\n", result);
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user