| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 | 
|---|---|---|---|---|---|---|---|---|
| 135128 | 林睿 | 求绝对值 | C++ | Wrong Answer | 1 MS | 276 KB | 212 | 2025-11-02 16:24:55 | 
#include<iostream> using namespace std; double csgo(double a){ double sb; if(a>=0){ cout<<a; } else{ sb=-a; } return sb; } int main(){ double a; cin>>a; cout<<csgo(a); return 0; }
------Input------
5
------Answer-----
5
------Your output-----
53.96847e-317