#include<iostream>
#include<cstdio>
#include<string>
#include<algorithm>
#include<cstring>
#include<vector>
#include<queue>
#include<map>
#include<set>
#include<cmath>
using namespace std;
int a[100009],hash[100009];
int main()
{
int n;
scanf("%d",&n);
while(n--)
{
memset(a,0,sizeof(a));
memset(hash,0,sizeof(hash));
int c;
scanf("%d",&c);
if(c<0)
{ cout<<"-";c=-c;}
if(c==1)
{cout<<"1"<<endl;continue;}
int i=0;
int k=1;
hash[k]=1;
int flag=0;
while(k)
{
k=k*10;//模拟除法
a[i++]=k/c;
k%=c;
if(hash[k])//这块哈希的运用很重要 一定要放前面 放后面hash*10 数组会崩 会超时
break;//只要出现循环 则一定会有相同的k
hash[k]=1;
}
printf("0.");
for(int j=0; j<i; j++)
printf("%d",a[j]);
cout<<endl;
}
}
hdu2522 模拟除法 和 无限循环小数的判断
最新推荐文章于 2018-09-29 20:15:00 发布