F to C conversion. Why shown as test case failed?

#include
using namespace std;

int main()
{

int mint = 0, maxt = 0, step = 0, temp = 0;

cin >> mint;
cin >> maxt;
cin >> step;

//cout << mint << " " << int ((mint - 32) * 0.55) << endl;

int nstep = mint;

while (nstep <= maxt)
{

	cout << nstep << "\t" << int ((nstep - 32) * 0.55) << endl;
	nstep += step;	

}

return 0;

}

hi @discobot,
cout << nstep << " " << int ((nstep - 32) * 5/9) << endl; here use space not tab and 5/9 not 0.55

Hi! To find out what I can do, say @discobot display help.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.