天梯赛华北赛区L1-7古风排版

L1-7. 古风排版

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

输入格式:

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

输出格式:

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

输入样例:
4
This is a test case
输出样例:
asa T
st ih
e tsi
 ce s

对数组,字符的处理,储存,倒叙输出

#include
#include
#include 
using namespace std;
int main(){
	int N;
	int x=0, y=0;
	int length=0;
	char s[1000]={};
	char  all[1000][1000]={};
	cin>>N;
	getchar();
	while((s[length]=getchar())!='\n'){//注意字符输入的表示 
		length++;//把这个输入到一个字符数组中 
	}
	for(int i=0;i=0;j--){//倒叙输出 
	    if(all[i][j]!=NULL)
	       printf("%c",all[i][j]); 
	    else
	    printf(" ");
    } 
    cout<



你可能感兴趣的:(天梯赛华北赛区L1-7古风排版)