HDU 2137 circumgyrate the string

http://acm.hdu.edu.cn/showproblem.php?pid=2137

 

circumgyrate the string

Time Limit: 10000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2164    Accepted Submission(s): 464


Problem Description
    Give you a string, just circumgyrate. The number N means you just     circumgyrate the string N times, and each time you circumgyrate the string for 45 degree anticlockwise.
 


 

Input
    In each case there is string and a integer N. And the length of the string is always odd, so the center of the string will not be changed, and the string is always horizontal at the beginning. The length of the string will not exceed 80, so we can see the complete result on the screen.
 


 

Output
    For each case, print the circumgrated string.
 


 

Sample Input
asdfass 7
 


 

Sample Output
a s d f a s s
 


 

Author
wangye
 


 

Source
 


 

Recommend
威士忌
 
题意:给一段字符串和数字N,N表示这段字符串逆时针旋转的次数,每次旋转45°,输出旋转后的字符串。
分析:旋转每8次一循环,并且当N的值取0和4;1和5;2和6;3和7时,输出格式一样,字符串的顺序相反。
代码如下:
#include<stdio.h>
#include<string.h>
#include<math.h>
int main()
{
  int n,i,flag,j,l;
  char w[81];
  while(scanf("%s%d",w,&n)!=EOF)
  {
    l=strlen(w);
    if(n%8==0) puts(w);
    if(n%8==4||n%8==-4)
    {
      for(i=0;i<l;i++)
          printf("%c",w[l-1-i]);
          printf("\n");
    }
    if(n%8==5||n%8==-3)
              {
          flag=l-1;
                  for(i=0;i<l;i++)
        {
            for(j=0;j<flag;j++)
                  printf(" ");
                          printf("%c\n",w[i]);
                          flag--;
         
              }
              if(n%8==1||n%8==-7)
    {
      flag=l-1;
                  for(i=0;i<l;i++)
        {
            for(j=0;j<flag;j++)
                  printf(" ");
                          printf("%c\n",w[l-1-i]);
                          flag--;
         
    }
    if(n%8==6||n%8==-2)
    {
        flag=l/2;
      for(i=0;i<l;i++)
        {
            for(j=0;j<flag;j++)
                  printf(" ");
                          printf("%c\n",w[i]);
          }
    }
    if(n%8==2||n%8==-6)
    {
        flag=l/2;
      for(i=0;i<l;i++)
        {
            for(j=0;j<flag;j++)
                  printf(" ");
                          printf("%c\n",w[l-1-i]);
          }
    }
    if(n%8==7||n%8==-1)
    {
          flag=0;
                  for(i=0;i<l;i++)
        {
            for(j=0;j<flag;j++)
                  printf(" ");
                          printf("%c\n",w[i]);
                          flag++;
         
              }
              if(n%8==3||n%8==-5)
        {
          flag=0;
                  for(i=0;i<l;i++)
        {
            for(j=0;j<flag;j++)
                  printf(" ");
                          printf("%c\n",w[l-1-i]);
                          flag++;
         
              }
                 
  }
  return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值