فایل متنی
فایل cpp
#include "stdafx.h"
#include "iostream"
#include "cmath"
using namespace std;
//alidoran
int main()
{
for (float x = 0; x < 2; x += 0.2) {
cout <<"cos^2("<<x<<")+sin^2("<<x<<")="<< pow(cos(x), 2)+ pow(sin(x) , 2)<< endl;
}
system("pause");
return 0;
}