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

Test2

时间:2019-07-08 00:12:17      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:register   har   int   main   strlen   using   while   cpp   return   

#include <bits/stdc++.h>

using namespace std;

const int maxl = 1e7 + 5;

char buf[maxl];

int main() {
    freopen("try.in", "r", stdin);
    freopen("try.out", "w", stdout);
    while (scanf("%s", &buf) != EOF) {
        int len = strlen(buf);

        printf("%s", buf);
        for (register int i = 0; i < len; i++) {
            printf("%c", buf[i]);
            if (buf[i] == ';') printf("\n");
        }
    }
    return 0;
}

Test2

标签:register   har   int   main   strlen   using   while   cpp   return   

原文地址:https://www.cnblogs.com/ac-evil/p/11148798.html

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