Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
147452 刘子隽bylz 计算函数值 C++ 通过 100 0 MS 248 KB 201 2024-05-18 15:24:02

Tests(5/5):


#include<bits/stdc++.h> using namespace std; double px(double x,int n){ if(n==1) return x; else return x*(1-px(x,n-1)); } int main(){ double a;int b; cin>>a>>b; printf("%.2f",px(a,b)); }


测评信息: