Fahrenheit to Celcius

#include<bits/stdc++.h>
using namespace std;
int main()
{
int minf,maxf;
int step,f;
double c;
cin>>minf>>maxf>>step;

for(f=minf;f<=maxf;f=f+step)
{
c=(((f-32)*5)/9);
cout<<f<<" "<<c<<endl;
}
return 0;
}

why my code is not get submitted ?

@rahulkumarraj220 ,
the output should be tab seperated , but your code the ouptut is space seperated
corrected code :- https://ide.codingblocks.com/s/289594

In case of any doubt feel free to ask :slight_smile:
Mark your doubt as RESOLVED if you got the answer

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.