Temat:
InformatykaAutor:
sullivanUtworzono:
1 rok temuOdpowiedź:
Wyjaśnienie:
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double a,b,c, pole, c2;
cout << "Podaj dlugosc 1. boku trojkata.\n";
cin >> a;
cout << "Podaj dlugosc 2. boku trojkata.\n";
cin >> b;
cout << "Podaj miare kata pomiedzy tymi bokami. (w stopniach)\n";
cin >> c;
c2 = c * M_PI / 180;
cout << "Pole tego trojkata wynosi: \n";
pole = 0.5*a*b*sin(c2);
cout << pole;
return 0;
}
Autor:
pebblescewc
Oceń odpowiedź:
4