6

Freedom  •  1年前


#include<iostream>
using namespace std;
int main()
{
	int c;
	float f; 
	cin>>c;
	f=9/5*c+32;
	printf("%.2f",f);
	return 0;
}

**这有错吗


评论:

这里要得到的是浮点数

f=9.0/5*c+32;


admin  •  1年前

这才是正确答案:

include

include

using namespace std; int main(){

int c;
double f;
cin>>c;
f=9.0/5.0*c+32;
cout<<fixed<<setprecision(2)<<f;
return 0;	

}


满分905(黄俊熙).  •  1年前

把9改为9.0就对了

#include<iostream>
using namespace std;
int main()
{
	int c;
	float f; 
	cin>>c;
	f=9.0/5*c+32;
	printf("%.2f",f);
	return 0;
}

思大迪【答疑老师】  •  1年前