Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
147413 杰苏尔纳迪尔 复杂算式 C++ 通过 100 0 MS 240 KB 277 2024-05-18 15:07:00

Tests(6/6):


#include<iostream> #include<cmath> #include<iomanip> using namespace std; double y(double x,int n){ if(n==1) return sqrt(x+n); else return sqrt(n+(y(x,n-1))); } int main(){ int n; double x; cin>>x>>n; cout<<fixed<<setprecision(2)<<y(x,n); return 0; }


测评信息: