Autor Wiadomość
Ricko
PostWysłany: Śro 12:11, 17 Kwi 2013    Temat postu: STUDIA: Funkcje trygonometryczne

Cytat:
#include <cstdlib>
#include <iostream>
#include <cmath>
#include <fstream>

using namespace std;

int main(int argc, char *argv[])
{
ofstream zapis("funkcje.txt");
zapis<<fixed;
zapis.precision(4);
zapis<<"x sin x cos x tg x ctg x"<<endl;
double radiany=0;
for (int i=0; i<=360; i++)
{
radiany =( i* M_PI ) / 180.0f;
zapis<<i<<" "<<sin(radiany)<<" "<<cos(radiany)<<" "<<tan(radiany)<<" "<<1/tan(radiany)<<endl;
}

system("PAUSE");
return EXIT_SUCCESS;
}

Powered by phpBB © 2001,2002 phpBB Group