HD-ACM算法专攻系列(11)——Exponentiation

Posted forcheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HD-ACM算法专攻系列(11)——Exponentiation相关的知识,希望对你有一定的参考价值。

问题描述:

 

 

源码:

考察对大数的计算,需要注意去除前导0与后导0.

import java.math.BigDecimal;
import java.util.*;

public class Main
{
		//主函数
        public static void main(String[] args)
        {
            BigDecimal r;
			int n;
			String str;
			Scanner cin = new Scanner(System.in);
			while(cin.hasNext())
			{
				r = cin.nextBigDecimal();
				n = cin.nextInt();
				str = r.pow(n).stripTrailingZeros().toPlainString();
				if(str.charAt(0) == \'0\')str  = str.substring(1);
				System.out.println(str);
			}
		}
}
 

  

 

以上是关于HD-ACM算法专攻系列(11)——Exponentiation的主要内容,如果未能解决你的问题,请参考以下文章

HD-ACM算法专攻系列(16)——考试排名

HD-ACM算法专攻系列——大菲波数

HD-ACM算法专攻系列——N!

HD-ACM算法专攻系列——排序

HD-ACM算法专攻系列——排序

HD-ACM算法专攻系列——A == B ?