Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
51460 | zhangsicun | 分段函数 | C++ | 解答错误 | 1 MS | 248 KB | 260 | 2024-09-21 22:14:02 |
#include<bits/stdc++.h> using namespace std; int main() { double x; cin >> x; if(0 <= x < 5){ cout<<-x+2.5; }if(5 <= x < 10){ cout<<2-1.5*(x-3)*(x-3); }if(10 <= x < 20){ cout<<x/2-1.5; } return 0; }