Написать программный код на c++ для решения выражения (sinx+cosy)/(cosx-siny))*tgxy

Rus9922 Rus9922    3   09.07.2019 08:10    8

Ответы
fiaskobro fiaskobro  16.09.2020 23:00
#include <iostream>
#include <cmath>
using namespace std;
int main() {
float x,y;
cin >>x>>y;
float t=(sin(x)+cos(y))/(cos(x)-sin(y))*tan(x*y);
cout << t;
return 0;
}
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика