Java语言程序设计与数据结构(基础篇)课后练习题 第十章

public static void main(String[] args) {

System.out.println(“p\t2^p-1”);

for (int i = 1; i <= 100; i++) {

BigInteger mersenne = new BigInteger(index(i) + “”);

BigInteger b1 = new BigInteger(i + “”);

if (isMersennePrime(i) && isPrime(b1)) {

System.out.print(b1);

System.out.print(“\t”);

System.out.println(mersenne);

}

}

}

public static boolean isPrime(BigInteger b) {

boolean r = true;

BigInteger b2 = new BigInteger(2 + “”);

if (b.equals(b2))

r = true;

else if (b.equals(new BigInteger(1 + “”)))

r = false;

else {

for (; b.compareTo(b2) == 1; b2 = b2.add(BigInteger.ONE)) {

if ((b.mod(b2)).equals(new BigInteger(0 + “”))) {

r = false;

continue;

}

}

}

return r;

}

public static boolean isMersennePrime(int i) {

boolean r2 = false;

if (isPrime(index(i)))

r2 = true;

return r2;

}

public static BigInteger index(int i) {

BigInteger i1 = new BigInteger(1 + “”);

BigInteger i2 = new BigInteger(2 + “”);

for (int b = 1; b <= i; b++) {

i1 = i1.multiply(i2);

}

BigInteger f = i1.subtract(BigInteger.ONE);

return f;

}

}

10.20

==================================================================

import java.math.BigDecimal;

import java.math.BigInteger;

public class dishizhang {

public static void main(String[] args) {

dishizhang computeE = new dishizhang();

for (int i=100;i<=1000;i+=100){

computeE.ComputeE(i);

}

}

public static BigDecimal factorial(int number) {

BigDecimal result=BigDecimal.valueOf(1L);

if (number==1){

return result;

}else {

for (int i=1;i<=number;i++){

BigDecimal iVal=BigDecimal.valueOf(i);

result=result.multiply(iVal);

}

return result;

}

}

public BigDecimal ComputeE(int index) {

BigDecimal result=BigDecimal.valueOf(1);

for (int i=1;i<=index;i++){

BigDecimal one=new BigDecimal(1);

BigDecimal tem=one.divide(factorial(i),25,BigDecimal.ROUND_UP);

result=result.add(tem);

}

System.out.println(“i:”+index+" e= "+result.toString());

return result;

}

}

10.21

==================================================================

这个代码应该也没有错误,还是没有等到答案,可能是运行时间太长。

import java.math.BigInteger;

public class dishizhang {

public static void main(String[] args) {

// TODO Auto-generated method stub

BigInteger n = new BigInteger(Long.MAX_VALUE + “”);

int count = 0;

while (count < 10) {

if (divide(n)) {

System.out.print(n + " ");

count++;

}

n = n.add(BigInteger.ONE);

}

}

public static boolean divide(BigInteger i) {

BigInteger s1 = new BigInteger(5+“”);

小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数初中级前端工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年Web前端开发全套学习资料》送给大家,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。

img
img
img
img

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频

如果你觉得这些内容对你有帮助,可以添加下面V无偿领取!(备注:前端)
img

最后

开源分享:【大厂前端面试题解析+核心总结学习笔记+真实项目实战+最新讲解视频】

❤️ 谢谢支持,喜欢的话别忘了 关注、点赞哦。

2438)]

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频

如果你觉得这些内容对你有帮助,可以添加下面V无偿领取!(备注:前端)
[外链图片转存中…(img-iYgXhnQv-1710604992439)]

最后

开源分享:【大厂前端面试题解析+核心总结学习笔记+真实项目实战+最新讲解视频】

❤️ 谢谢支持,喜欢的话别忘了 关注、点赞哦。

前端校招面试题精编解析大全

  • 9
    点赞
  • 30
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值