Home
О нас
Products
Services
Регистрация
Войти
Поиск
HelperGL
@HelperGL
September 2021
1
3
Report
помогите написать на языке с++
Please enter comments
Please enter your name.
Please enter the correct email address.
Agree to
terms of service
You must agree before submitting.
Send
Answers & Comments
uropb123
Если не ошибаюсь, то так :
#include <iostream>
using namespace std;
int main() {
cout << " x = ";
double x;
cin >> x ;
double y = x - (10 * sin(x)) + abs(pow(x, 4)-pow(x,5));
cout << "y = " << x << endl;
system("pause");
}
0 votes
Thanks 1
×
Report "помогите написать на языке с++..."
Your name
Email
Reason
-Select Reason-
Pornographic
Defamatory
Illegal/Unlawful
Spam
Other Terms Of Service Violation
File a copyright complaint
Description
Helpful Links
О нас
Политика конфиденциальности
Правила и условия
Copyright
Контакты
Helpful Social
Get monthly updates
Submit
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
using namespace std;
int main() {
cout << " x = ";
double x;
cin >> x ;
double y = x - (10 * sin(x)) + abs(pow(x, 4)-pow(x,5));
cout << "y = " << x << endl;
system("pause");
}