Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
50563 逸凡 根据x值,求y值 C++ 通过 0 MS 240 KB 165 2024-08-30 18:54:15

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main(){ int x; cin>>x; if(x>=0&&x<=3) cout<<3*x-5; if(x>3) cout<<4; if(x<0) cout<<14-2*x; return 0; }


测评信息: