古风排版

L1-039 古风排版 (20 分)

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

输入格式:

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

输出格式:

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

输入样例:

4
This is a test case

输出样例:

asa T
st ih
e tsi
 ce s

源代码:

#include
#include
#include
#include
using namespace std;
int main() {
	char s[100][100];
	string str;
	int len,n,m,N;
	memset(s,' ',sizeof(s));
	cin>>N;
	getchar();
	getline(cin,str);
	len=str.length();
	n=len/N;
	m=len%N;//求第一列(从左往右数)的字符数
	if(m!=0) n+=1;//求列数
	for(int i=0;i<N;i++){
		for(int j=0;j<n;j++){
			s[i][j]=str[1+(n-1-j)*N+i-1];
			cout<<s[i][j];//写到这发现可以不用s[][]数组 
		}
		cout<<endl;
	} 
	return 0;
}

你可能感兴趣的:(PTA,天梯赛)