文章
84
粉丝
408
获赞
33
访问
867.6k
#include<iostream> using namespace std; int main() { int x; cin >> x; if (x < 1) cout << x << endl; else if (x >= 10) cout << 3*x - 11 << endl; else cout << 2*x - 1 << endl; return 0; }
登录后发布评论
暂无评论,来抢沙发