Blame view

P37760_en/S006-WA.cc 286 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <iostream>
#include <cmath>
#include <iomanip>

using namespace std;

int main()
{
	float angle;

	while(1)
	{
		cin >> angle;
		if(cin.eof())
		{
			return 0;
		}
		cout << fixed << setprecision(6) << sin(angle*M_PI/180) << " " << cos(angle*M_PI/180) << endl;
	}
	return 0;
}