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