Ответ:
С++
#include <iostream>
#include <math.h>
using namespace std;
int main() {
setlocale(LC_ALL, "RUS");
float y, x;
cout << "Введите значение х: ";
cin >> x;
y = x * x + exp(x);
cout << "y = " << y << endl;
return 0;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
С++
#include <iostream>
#include <math.h>
using namespace std;
int main() {
setlocale(LC_ALL, "RUS");
float y, x;
cout << "Введите значение х: ";
cin >> x;
y = x * x + exp(x);
cout << "y = " << y << endl;
return 0;
}