码迷,mamicode.com
首页 > 其他好文 > 详细

UVa1225,Digit Counting

时间:2014-07-26 01:47:36      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   for   art   

bubuko.com,布布扣
#include <cstdio>
#include <cstring>
int main()
{
    int n;
    scanf("%d", &n);
    char s[100];
    while(n--)
     {
         scanf("%s", s);
         int len = strlen(s);
         for(int i = 1; i <= len; i++)
             if(len % i == 0)
             {
                 int k;
                 for(k = i; k < len; k++)
                     if(s[k] != s[k%i])   break;
                 if(k == len)
                 {
                     printf("%d\n", i);
                     if(n)   printf("\n");
                     break;
                 }
             }
     }
}
View Code

 

UVa1225,Digit Counting,布布扣,bubuko.com

UVa1225,Digit Counting

标签:style   blog   http   color   os   io   for   art   

原文地址:http://www.cnblogs.com/bingolibing/p/3869161.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!