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;
}