UVA 202 循环小数

看不懂,先立个Flag吧

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	static int[] r = new int[3003];
	static int[] u = new int[3003];
	static int[] s = new int[3003];
	public static void main(String[] args){
		Scanner scan = new Scanner(System.in);
		int t;
		while(scan.hasNext()){
			int n = scan.nextInt();
			int m = scan.nextInt();
			t = n;
			Arrays.fill(r, 0);
			Arrays.fill(u, 0);
			int count = 0;
			r[count++] = n/m;
			n = n%m;
			while(u[n]==0&&n!=0){
				u[n] = count;
				s[count] = n;
				r[count++] = 10*n/m;
				n = 10*n%m;
			}
			System.out.printf("%d/%d = %d.",t,m,r[0]);
			for(int i=1;i<count&&i<=50;++i){
				if(n!=0&&s[i]==n)System.out.printf("(");
				System.out.printf("%d",r[i]);
			}
			if(n==0)System.out.printf("(0");
			if(count>50)System.out.printf("...");
			System.out.printf(")\n");
			System.out.printf("   %d = number of digits in repeating cycle\n\n",n==0?1:count-u[n]);
		}
	}
	
	
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值