Temp conversion

what is wrong with the code?
#include
using namespace std;
int main() {
int mi,ma,st,c,f;
cout<<“enter min max step of temp”;
cin>>mi;
cin>>ma;
cin>>st;
if((mi>=0 and mi<100) and (ma<500 and ma > mi) and (st>0))
{
for(f=mi;f<=ma;f+=st)
{
c=((f-32)*5)/(9);
cout<<f<<" “<<c<<”\n";
}

}

return 0;

}

No need for the if condition.
Here is your updated code -

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.