posts - 2, comments - 0, trackbacks - 0, articles - 1

poj_1001 java

Posted on 2011-10-27 23:37 应该干点什么 阅读(191) 评论(0)  编辑  收藏 所属分类: Poj-ACM
 1import java.util.*;
 2import java.io.*;
 3import java.math.*;
 4
 5public class poj_1001{
 6    
 7    public static void main(String rgs[]) throws Exception
 8    {
 9        Scanner in=new Scanner(new BufferedInputStream(System.in));
10        while(in.hasNext()){
11            BigDecimal bd = in.nextBigDecimal();  
12            int power = in.nextInt();
13            BigDecimal result = bd.pow(power);  
14            String s = result.stripTrailingZeros().toPlainString();
15            if(s.startsWith("0")){
16                s=s.substring(1);
17            }

18            System.out.println(s);
19       }

20      
21    }

22}

只有注册用户登录后才能发表评论。


网站导航: