#P1021. 浮点数类型
浮点数类型
Description
两个整数 $a$ 和 $b$ 分别作为分子和分母,即分数 $\dfrac{a}{b}$,求它的浮点数值。答案保留小数点后 $9$ 位。Input Format
一行两个整数分别表示 $a$ 和 $b$。Output Format
一行一个实数表示 $\dfrac{a}{b}$ 。5 7
0.714285714
Hint
cout<<fixed<<setprecision(4);Source
输入/输出相关
在下列比赛中: