0
I try to conversion the temperature from F to C but the code doesn't work!!
3 Respuestas
+ 4
When using cin, avoid adding endl.
Change
cin>>F>>endl;
to
cin>>F;
There are other errors but I hope this helps :)
+ 3
https://code.sololearn.com/cSh6ohQ2N880/?ref=app
endl cannot be initialized it's a predefined object
likewise many are there...
+ 1
Snehil Pandey [offline-mode]
Apollo-Roboto
thanks guys it’s worked