#include <iostream>
#include <cmath>
using namespace std;
int main() {
double a, b, h;
// Введення значень a, b та h
cout << "Введіть початкове значення a: ";
cin >> a;
cout << "Введіть кінцеве значення b: ";
cin >> b;
cout << "Введіть крок h: ";
cin >> h;
double x = a;
while (x <= b) {
// Обчислюємо значення функції y = |x - 5| + x^2
double y = abs(x - 5) + pow(x, 2);
// Виводимо результат
cout << "Значення функції y(" << x << ") = " << y << endl;
// Збільшуємо x на крок h
x += h;
}
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
#include <cmath>
using namespace std;
int main() {
double a, b, h;
// Введення значень a, b та h
cout << "Введіть початкове значення a: ";
cin >> a;
cout << "Введіть кінцеве значення b: ";
cin >> b;
cout << "Введіть крок h: ";
cin >> h;
double x = a;
while (x <= b) {
// Обчислюємо значення функції y = |x - 5| + x^2
double y = abs(x - 5) + pow(x, 2);
// Виводимо результат
cout << "Значення функції y(" << x << ") = " << y << endl;
// Збільшуємо x на крок h
x += h;
}
return 0;
}