2018/12/08 L1-046 整除光棍 Java

Posted 黄某人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2018/12/08 L1-046 整除光棍 Java相关的知识,希望对你有一定的参考价值。

练习了BigInteger的使用的方法, 代码如下:

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.math.BigInteger;

public class Main {

    public static void main(String[] args) throws Exception{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));        
        BigInteger bigNum = new BigInteger(String.valueOf(1));
        int index = 1;
        int num = Integer.parseInt(br.readLine());
        BigInteger intToBig = BigInteger.valueOf(num);
        if(num > 0 && num < 1000 && num%2 != 0 && num%5 != 0) {  // 满足条件 1、num为小于1000的正数 2、num为奇数 3、num个位不是5
            while( true) {
                if(bigNum.mod(intToBig).intValue() != 0) {  // 111不能整除输入的数
                    bigNum = bigNum.multiply(BigInteger.valueOf(10));
                    bigNum = bigNum.add(BigInteger.valueOf(1));
                    index++;
                } else {
                    System.out.print(bigNum.divide(intToBig) + " " + index);
                    return;
                }
            }
        } else {
            return;
        }
        

    }

}

 

以上是关于2018/12/08 L1-046 整除光棍 Java的主要内容,如果未能解决你的问题,请参考以下文章

L1-046. 整除光棍

L1-046 整除光棍

2021-3-25天梯赛补题L1-046 整除光棍 (20 分)

L1-046 整除光棍 [大数相除]

Go语言入门150题L1-046 整除光棍 (20 分) Go语言 | Golang

L1-046-光棍