L1-7古风排版

来源:互联网 发布:拼多多淘宝同款链接 编辑:程序博客网 时间:2024/04/29 10:01

L1-7. 古风排版

时间限制
400 ms
内存限制
65536 kB
代码长度限制
8000 B
判题程序
Standard
作者
陈越

中国的古人写文字,是从右向左竖向排版的。本题就请你编写程序,把一段文字按古风排版。

输入格式:

输入在第一行给出一个正整数N(<100),是每一列的字符数。第二行给出一个长度不超过1000的非空字符串,以回车结束。

输出格式:

按古风格式排版给定的字符串,每列N个字符(除了最后一列可能不足N个)

输入样例:
4This is a test case
输出样例:
asa Tst ihe tsi ce s
#include<iostream>#include<string>#include<stdio.h>using namespace std;int main(){  int N;  char all[1000][100]={};  char s[1000]={};  int wtf=0;  scanf("%d",&N);  getchar();  while((s[wtf]=getchar())!='\n'){    wtf++;  }  int x=0,y=0;  for(int i=0;i<wtf;i++){    all[x][y]=s[i];    x++;    if(x==N){      x=0;      y++;    }  }  if(wtf==0)    return 0;  if(x==0)    y--;  for(int i=0;i<N;i++){    for(int j=y;j>=0;j--){      if(all[i][j]!=NULL)        printf("%c",all[i][j]);      else        printf(" ");    }    cout<<endl;  }  return 0;}



2 0
原创粉丝点击