সোমবার, ২৩ এপ্রিল, ২০১৮

UVa 10127: Ones

#include<stdio.h>
int main()
{
    int  n;
    while(scanf("%d",&n)==1)
    {
        int t=10;
        int count=1;
        int g=1;
        while(g%n!=0)
        {
            g=(g*t+1)%n;
            count++;
        }
        printf("%d\n",count);
    }

    return 0;
}

কোন মন্তব্য নেই:

একটি মন্তব্য পোস্ট করুন

Factory Pattern

Factory Method  is a creational design pattern that provides an interface for creating objects in a superclass but allows subclasses to alte...