Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
3089 王皓暄 根据x值,求y值 C++ 通过 0 MS 248 KB 204 2022-12-17 23:17:03

Tests(1/1):


#include <iostream> using namespace std; int main() { int x,y; cin>>x; if(x<0) y=14-2*x; else if(x>3) y=4; else y=3*x-5; cout<<y; return 0; }


测评信息: