#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
double a,b,result;
a = 2;b = 3;
result = a / b;
cout << fixed << setprecision(2) << result;
}
the output of this code in my IDE is :
0.67
i want the output to be
0.66
what do i do to change it to that