Thursday, January 28, 2016

UVA 11192 | | Group Reverse

#include<iostream>
#include<string>
#include<cstring>
#include<cstdio>
#include<string>
#include<ctype.h>
#include<stdlib.h>
#include<vector>
#include<algorithm>
using namespace std;
int main()
{
    char s[100],temp[100];
    int i, t , j, cnt=0, len;
    while(cin>>t){
            if(t==0)
            break;
    getchar();
    gets(s);
    len=strlen(s)/t;
    for(i=0; i<strlen(s); i+=len){
        for(j=i+len; ; j--){
            cout<<s[j-1];
            cnt++;
            if(cnt==len)
                break;
        }
        cnt=0;
    }
    cout<<"\n";
    }

  return 0;
}

No comments:

Post a Comment