Code is giving error when I am submitting it.
Cannot figure out the mistake in the code
That was cause of output format, check now
#include using namespace std; int main(){ int fah_min; int fah_max; int step; float cel; cin>>fah_min; cin>>fah_max; cin>>step; cout<<“fahrenheit\tcelcius”<<endl; for (int i = fah_min; i <=fah_max; i=i+step) { cel=((float)5/9)(i-32);//was not giving '’ sign// cout<<i<<"\t"<<(int)cel<<endl; } return 0; }//still not getting submitted
Submit this code->
This will get accepted.
Still not getting submitted
It’s showing me that you got 100% on submission.
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.