C++输出整数前置取0,读取整行,find

输出整数前置取零用cout << setw(n) << setfill(‘0’)

#include <bits/stdc++.h>
using namespace std;
int main()
{
	int num;
	cin >> num;
	if(num > 10000)
	{
		int year = num / 100;
		cout << setw(4) << setfill('0') << year << "-" << setw(2) << num % 100;
	}
	else
	{
		int year = num / 100;
		if(year < 22)
		{
			cout << 20;
		}
		else
		{
			cout << 19;
		}
		cout << setw(2) << setfill('0') << year << "-" << setw(2) << num % 100;
	}
}

读取整行用getline(cin,temp)
string类型用find函数,如果没有查到,那么返回string::npos

#include <bits/stdc++.h>
using namespace std;
int n,m;
string q = "qiandao",e = "easy";

int main()
{
	cin >> n >> m;
	int t = 0;
	getchar();
	bool flag = true;
	string temp;
	for(int i = 0;i < n;i ++)
	{
		
		getline(cin,temp);
		if(temp.find(q) == string::npos && temp.find(e) == string::npos && m == 0)
		{
			cout << temp;
			flag = false;
			break;
		}
		if(temp.find(q) == string::npos && temp.find(e) == string::npos)
		{
			m --;
		}
		
		
	}
	if(flag)
	{
		cout << "Wo AK le";
	}
}
  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值