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