博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj1002 大数的 n的m次
阅读量:5010 次
发布时间:2019-06-12

本文共 741 字,大约阅读时间需要 2 分钟。

import java.math.BigDecimal;import java.util.Scanner;public class Main  {     public static void main(String[] args) {    Scanner cin = new Scanner(System.in);    while (cin.hasNext()) {        BigDecimal R =cin.nextBigDecimal();           int n = cin.nextInt();           R = R.pow(n);           String str = R.stripTrailingZeros().toPlainString();           //stripTrailingZeros() ,返回类型为BigDecimal的小于此数的但除去尾部的0的数值。           //toPlainString(),返回BigDecimal类型的String类型字符串。           if (str.startsWith("0."))                str = str.substring(1);               System.out.println(str);               //确定此实例的开头是否与指定的字符串匹配。             //substring(),索引处的字符,一直到此字符串末尾。            }        }}

 

转载于:https://www.cnblogs.com/2014slx/p/7887622.html

你可能感兴趣的文章
Eclipse tomcat server 无法添加项目
查看>>
黑寡妇黄飞鸿
查看>>
leetcode 217 Contains Duplicate 数组中是否有重复的数字
查看>>
The Ctrl & CapsLock `problem'
查看>>
MyBatis学习总结(二)——使用MyBatis对表执行CRUD操作
查看>>
linux故障判断
查看>>
Leetcode 23. Merge k Sorted Lists(python)
查看>>
Java进阶知识点6:并发容器背后的设计理念 - 锁分段、写时复制和弱一致性
查看>>
Makefile ===> Makefile 快速学习
查看>>
face detection[HR]
查看>>
java性能调优工具
查看>>
C# 其他的Url 文件的路径转化为二进制流
查看>>
cmake使用
查看>>
ios7上隐藏status bar
查看>>
构造方法和全局变量的关系
查看>>
python3基础05(有关日期的使用1)
查看>>
ArrayList的使用方法
查看>>
面向对象高级
查看>>
Bitwise And Queries
查看>>
打印Ibatis最终的SQL语句
查看>>