4 条题解
-
0
import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); double a = sc.nextDouble(); double b = sc.nextDouble(); int c = sc.nextInt(); System.out.println(Math.round((a+b)*Math.pow(10,c))/Math.pow(10,c)); } }
信息
- ID
- 567
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 3
- 标签
- 递交数
- 130
- 已通过
- 21
- 上传者