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

PAT 1031 Hello World for U

时间:2014-11-02 21:00:48      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   for   sp   div   on   

#include <cstdio>
#include <cstring>
#include <cstdlib>

using namespace std;

char line[82];
char space[82];

int main() {
    scanf("%s", line);
    int len = strlen(line);
    int side_size = (len + 2) / 3 - 1;
    int last_size = len - side_size * 2;
    int space_size= last_size - 2;

    for (int i=0; i<space_size; i++) {
        space[i] =  ;
    }
    
    const char* p = line;
    const char* q = line + len - 1;
    for (int i=0; i<side_size; i++) {
        printf("%c%s%c\n", *p++, space, *q--);
    }
    for (int i=0; i<last_size; i++) {
        printf("%c", *p++);
    }
    
    return 0;
}

真的是helloworld

PAT 1031 Hello World for U

标签:style   blog   io   color   ar   for   sp   div   on   

原文地址:http://www.cnblogs.com/lailailai/p/4069830.html

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