Тема: Математичні константи
error C2065: 'M_PI' : undeclared identifier
error C2065: 'M_E' : undeclared identifier
#include <iostream>
#define _USE_MATH_DEFINES
#include <cmath>
using namespace std;
int main() {
cout<<"pi="<<M_PI<<endl;
cout<<"e="<<M_E<<endl;
cout<<endl;system("pause"); return 0;
}