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); } }
扫描二维码,关注牛客
下载牛客APP,随时随地刷题
全部评论
(0) 回帖