Posted on 2010-08-06 09:45
MiYu 阅读(774)
评论(0) 编辑 收藏 引用 所属分类:
ACM ( 串 ) 、
ACM ( 水题 )
//MiYu原创, 转帖请注明 : 转载自 ______________白白の屋题目地址:
http://acm.hdu.edu.cn/showproblem.php?pid=2081水到不能在水的一道题......................
直接代码:
//MiYu原创, 转帖请注明 : 转载自 ______________白白の屋
#include <iostream>
#include <string>
using namespace std;
int main ()
{
int T;
cin >> T;
while ( T -- )
{
string t;
cin >> t ;
string num ( t, 6,11 );
cout << "6" + num << endl;
}
return 0;
}