文章

84

粉丝

408

获赞

33

访问

867.6k

头像
计算函数(c++)
P1037
发布于2020年3月25日 10:40
阅读数 9.3k

#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;
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发