首页 > 代码库 > HDU 2081: 手机短号

HDU 2081: 手机短号

手机短号


///@author Sycamore
///@date 8/9/2017
#include<bits/stdc++.h>
using namespace std;
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(0);
	int n;
	cin >> n;
	while (n--)
	{
		string s;
		cin >> s;
		cout << ‘6‘;
		for (int i = 6; i < 11; i++)cout << s[i];
		cout << ‘\n‘;
	}
	return 0;
}

 

HDU 2081: 手机短号