Ответ:
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
float x, y;
cin >> x;
y = exp(x) + 1;
cout << y;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
float x, y;
cin >> x;
y = exp(x) + 1;
cout << y;
}