Tanky WooRSS

HDOJ 2081 手机短号

06 Aug 2010
这篇博客是从旧博客 WordPress 迁移过来,内容可能存在转换异常。

题目地址:

http://acm.hdu.edu.cn/showproblem.php?pid=2081

水题~~~~


#include 
#include 
using namespace std;

int main()
{
    string phone;
    int nCases;
    cin >> nCases;
    while(nCases--)
    {
        cin >> phone;
        cout << "6" << &(phone[6]) << endl;
    }
    return 0;
}