Problem1013--§1 2.2.3计算(a+b)/c的值II

1013: §1 2.2.3计算(a+b)/c的值II

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

给定 $3$ 个双精度浮点数$a$、$b$、$c$,计算表达式 $\frac{(a+b)}{c}$ 的值。

Input

输入仅一行,包括三个双精度浮点数 $a$、$b$、$c$,数与数之间以一个空格分开。($-100,000,000.0 < a,b,c < 100,000,000.0, c \neq 0$)。

Output

输出一行,即表达式的值。小数点后面保留 $5$ 位。

Sample 1 Input

1 0 3

Sample 1 Output

0.33333

Sample 2 Input

2 2 2

Sample 2 Output

2.00000

HINT

如何保留小数点后几位
#include<bits/stdc++.h>
using namespace std;
int main() {
    double a,b,c;
    cin>>a>>b>>c;
    cout<<fixed<<setprecision(5)<<(a+b)/c<<endl;
    return 0;
}

Source/Category

C++语法 1.2.顺序结构