首页 > 牛客编程巅峰赛S2赛季第四场
头像
大大怪0_0
编辑于 2020-11-30 12:07
+ 关注

牛客编程巅峰赛S2赛季第四场

import java.util.*;


public class Solution {
    /**
     * 返回一个严格四舍五入保留两位小数的字符串
     * @param n int整型 n
     * @return string字符串
     */
    public String Probability (int n) {
        // write code here
       double b = Math.pow(0.5,n)*2;
       return String.format("%.2f", b);
    }
    
}

全部评论

(0) 回帖
加载中...
话题 回帖

相关热帖

近期热帖

近期精华帖

热门推荐