首页 > 代码库 > POJ 2039 To and Fro(水题)
POJ 2039 To and Fro(水题)
【题目简述】:字符串的简单处理,看懂题意,特别是他给的那个例子就好,很简单
见代码:
#include<iostream> #include<cstring> #include<cstdio> #include<algorithm> using namespace std; char str[211][211]; int main() { int colum; char str1[211]; int tmp; while(cin>>colum,colum) { cin>>str1; int len = strlen(str1); tmp = len/colum; int count = 0; for(int i = 0;i<tmp;i++) { if(i%2 == 0) for(int j = 0;j<colum;j++) str[i][j] = str1[count++]; else for(int j = colum-1;j>=0;j--) str[i][j] = str1[count++]; } for(int i = 0;i<colum;i++) { for(int j = 0;j<tmp;j++) cout<<str[j][i]; } cout<<endl; } return 0; }
POJ 2039 To and Fro(水题)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。