码迷,mamicode.com
首页 > 移动开发 > 详细

HDU 2081: 手机短号

时间:2017-08-09 10:00:30      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:str   clu   sync   href   ons   ble   more   pac   main   

手机短号


///@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: 手机短号

标签:str   clu   sync   href   ons   ble   more   pac   main   

原文地址:http://www.cnblogs.com/zjnu/p/7323407.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!