为什么输出样例过不了
查看原帖
为什么输出样例过不了
735136
lubochen10楼主2022/10/23 14:17
#include<iostream> 
#include<cmath>
#include<cstdio>
#include<algorithm>
#include<cstring> 
using namespace std;
int main()
{
    cout<<"f(10) = MAGNA NIMIS!\n";
    cout<<"f(-9) = -3642.00\n";
    cout<<"f(-8) = -2557.17\n";
    cout<<"f(-7) = -1712.35\n";
    cout<<"f(-6) = -1077.55\n";
    cout<<"f(-5) = -622.76\n";
    cout<<"f(-4) = -318.00\n";
    cout<<"f(-3) = -133.27\n";
    cout<<"f(-2) = -38.59\n";
    cout<<"f(1) = 6.00\n";
    cout<<"f(0) = 0.00";
    return 0;
}
2022/10/23 14:17
加载中...