首页 > 代码库 > 快速切题 sgu 112. a^b-b^a 大数 次方 难度:0 非java:1
快速切题 sgu 112. a^b-b^a 大数 次方 难度:0 非java:1
112. a^b-b^a
time limit per test: 0.25 sec.
memory limit per test: 4096 KB
You are given natural numbers a and b. Find a^b-b^a.
Input
Input contains numbers a and b (1≤a,b≤100).
Output
Write answer to output.
Sample Input
2 3
Sample Output
-1
import java.io.*;import java.math.BigInteger;import java.util.Scanner;public class Main { public static void main(String []args) throws IOException{ int a,b; Scanner scanner=new Scanner(System.in); a=scanner.nextInt();b=scanner.nextInt(); BigInteger A=BigInteger.valueOf(a); BigInteger B=BigInteger.valueOf(b); A=A.pow(b);B=B.pow(a); A=A.subtract(B); System.out.println(A); }}
快速切题 sgu 112. a^b-b^a 大数 次方 难度:0 非java:1
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。