Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
6312 limingyu 输出绝对值 C++ 通过 1 MS 276 KB 236 2022-11-30 20:52:38

Tests(2/2):


#include<iostream> using namespace std ; #include<cstdio> int main () { float x=3.14; cin >> x; if (x>=0){ printf("%.2f",x); }else if (x<0){ printf("%.2f",-x); } return 0; }


测评信息: