#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
const double pi=22.0/7.0;
cout<<fixed<<setprecision(51);
cout<<"\n\t Pi = "<<pi<<endl;
cin.get();
system("pause");
return 0 ;
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)