what is wrong in the code
#include
using namespace std;
int main() {
int f=0;
int c;
while(f<=100)
{
c=(5*(f-32))/9;
cout<<f<<" "<<c;
f=f+20;
}
return 0;
}
what is wrong in the code
#include
using namespace std;
int main() {
int f=0;
int c;
while(f<=100)
{
c=(5*(f-32))/9;
cout<<f<<" "<<c;
f=f+20;
}
return 0;
}