Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
147515 | dadsafdfe | 计算函数值 | C++ | 通过 | 100 | 0 MS | 256 KB | 244 | 2024-05-18 15:40:15 |
#include <bits/stdc++.h> using namespace std; double f(int x,int n){ if(n==1){ return pow(x,n); } return f(x,n-1)+pow(-1,n-1)*pow(x,n); } int main(){ int x,n; cin>>x>>n; cout<<fixed<<setprecision(2)<<f(x,n); return 0; }