#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
float a=3.14159*22500;
cout<<fixed<<setprecision(4)<<a;
}
Output I am getting is 70685.7734 and the actual answer is 70685.7750, how can I modify my code to get the correct output?