Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
8369 顾顺 求小数的某一位 Java 编译错误 0 0 MS 0 KB 554 2020-10-31 19:48:43

Tests(0/0):


package bb; import java.util.Scanner; public class 求小数n位后3个数 { static long a, b, n; static void getInput() { Scanner sc = new Scanner(System.in); a = sc.nextLong(); b = sc.nextLong(); n = sc.nextLong(); sc.close(); } static void calc() { long _扩大倍数 = (long) Math.pow(10, (n - 1) + 3); long _a扩大后 = a * _扩大倍数; long _商 = _a扩大后 / b; long _后三位 = _商 % 10; System.out.println(_后三位); } public static void main(String[] args) { getInput(); calc(); } }


测评信息: