Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
141023 张咏灏 求绝对值II C++ Compile Error 0 MS 0 KB 171 2025-12-20 16:57:18

Tests(0/0):


Code:

#include<iostream> using namespace std; void b(int a){ cin>>a; if(a<0){ cout<<a+(0-a)*2; }else{ cout<<a; } } int main(){ b(0) }


Run Info:

Main.cc: In function 'int main()':
Main.cc:13:1: error: expected ';' before '}' token
 }
 ^