参考代码:
import java.math.BigInteger; import java.util.Scanner; public class Main{ public static void main(String[] args){ Scanner ss=new Scanner(System.in); BigInteger a=ss.nextBigInteger(); BigInteger b=ss.nextBigInteger(); BigInteger m=a.modPow(b,BigInteger.valueOf(1000)); if(m.compareTo(BigInteger.valueOf(0))>=0&&m.compareTo(BigInteger.valueOf(10))<0) System.out.print("00"+m); else if(m.compareTo(BigInteger.valueOf(10))>=0&&m.compareTo(BigInteger.valueOf(100))<0) System.out.print("0"+m); else System.out.print(m); } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:641 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:633 |
C语言程序设计教程(第三版)课后习题6.6 (C语言代码)浏览:366 |
图形输出 (C语言代码)浏览:1019 |
陶陶摘苹果2 (C语言代码)浏览:650 |
1134题解(求分析)浏览:795 |
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:765 |
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)浏览:1260 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:456 |
C语言训练-斐波纳契数列 (C语言代码)浏览:644 |