码迷,mamicode.com
首页 > 其他好文 > 详细

hdu4018(模拟)

时间:2014-10-25 11:56:39      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   os   ar   for   sp   on   2014   

水模拟:

点击打开链接hdu 4018

#include <stdio.h>
#include <string.h>
#include <iostream>
#include <math.h>
#include <algorithm>
#include <vector>
#include <map>
#include <queue>
#include <stack>
#define PI acos(-1.0)
#define M 1000005  //10^6
#define eps 1e-8
#define LL long long
#define moo 1000000007
#define INF -999999999
using namespace std;
char a[M];
int main()
{
    int T;
    while(scanf("%d",&T)!=EOF)
    {
        int dd=T;
        while(T--)
        {
            scanf("%s",a);
            int flag=0;
            cout<<"Case #"<<dd-T<<": ";
            for(int i=0;i<strlen(a);i++)
            {
                if(a[i]==':'&&a[i+1]=='/'&&a[i+2]=='/'&&flag==0)
                {
                    i=i+3;
                    flag=1;
                }
                if(flag==1)
                {
                    if(a[i]=='/'||a[i]==':')
                        break;
                    printf("%c",a[i]);
                }
            }
            cout<<endl;
        }
    }
}


hdu4018(模拟)

标签:blog   http   io   os   ar   for   sp   on   2014   

原文地址:http://blog.csdn.net/u013712847/article/details/40451105

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