Laizhlalm
4 год назад
Запишіть арифметичний вираз за правилами мови С++ y = 2x + sin2x
ОТВЕТЫ
Онисим
Nov 19, 2020
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double x, y;
cout << "y = 2x +sin2x\nenter x: ";
cin >> x;
y = 2 * x + sin(2*x)
cout << "y = " << y << endl;
}
105