فایل متنی
فایل 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<<" = "<<cos(2 * x) << "\t" <<"2*(cos^2)("<<x<<")-1= "<<2*pow(cos (x),2)-1 <<endl;
}
system("pause");
}