读书人

怎样求出22/7小数点后的100位数?该如

发布时间: 2012-01-09 21:05:42 作者: rapoo

怎样求出22/7小数点后的100位数?
怎样求出22/7小数点后的100位数?急需...

[解决办法]

Java code
  public static void main(String[] args) {    BigDecimal a = new BigDecimal(22);    a = a.divide(new BigDecimal(7), 100,BigDecimal.ROUND_HALF_UP);    System.out.println(a);  }
[解决办法]
Java code
public class Test {    public static void main(String[] args) {        System.out.println(div7(22, 100));  // 22/7 的第 100 位        System.out.println(div7(33, 100));  // 33/7 的第 100 位    }    public static int div7(int numerator, int digit) {                  int mod = numerator % 7;        if(mod == 0) {            return 0;        }        String repetend = "142857";        int[] shift = {0, 2, 1, 4, 5, 3};        char c = repetend.charAt((digit + shift[mod - 1] - 1) % 6);        return c - '0';    }} 

读书人网 >J2SE开发

热点推荐