SGU 112.a^b - b^a

题意:

       如标题。

方法:

        简单高精度。。。

 

代码(继续JAVA 水过)

 

 

 1 import java.util.*;
 2 import java.math.*;
 3 public class Solution {
 4     public static void main(String[] args){
 5         Scanner cin=new Scanner(System.in);
 6         int a=cin.nextInt(),b=cin.nextInt();
 7         BigInteger s,t;
 8         s=BigInteger.valueOf(a).pow(b);
 9         t=BigInteger.valueOf(b).pow(a);
10         System.out.print(s.subtract(t));        
11     }
12 }

 

 

 

posted @ 2014-06-30 12:42  keambar  阅读(145)  评论(0编辑  收藏  举报