浮点除法
浮点除法
https://ac.nowcoder.com/acm/problem/21992
我们都知道/只能得到整数的除法,这个题目如果使用强制类型转换会十分的方便。
#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; printf("%.3f",(float)a/b); }
浮点除法
https://ac.nowcoder.com/acm/problem/21992
我们都知道/只能得到整数的除法,这个题目如果使用强制类型转换会十分的方便。
#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; printf("%.3f",(float)a/b); }
相关推荐