作者:yunjinqi 类别: 日期:2023-05-29 15:07:45 阅读:28 次 消耗积分:0 分 编辑文章
#include <stdio.h>
int main()
{
int x,s=1,n=1;
scanf("%d",&x);
while(s<x)
{
s=s*10+1;
n++;
}
while(1) {
printf("%d",s/x);
if(s%x==0) break;
s=(s%x)*10+1;
n++;
}
printf(" %d",n);
return 0;
}