1395: printf格式化输出(4)
[Creator : ]
Description
读入3个小数,并输出这三个小数,小数点后以四舍五入形式保留3位有效数字。比如,读入 1.5 2.6789 3.11,则输出:
a=1.500
b=2.679
c=3.110
a=1.500
b=2.679
c=3.110
Input
三行,每行一个数字,分别表示1个小数。
Output
3行,表示输出结果。
Sample Input Copy
1.5 2.6789 3.11
Sample Output Copy
a=1.500
b=2.679
c=3.110