如何开根号 编程实现

public static double sqrt(double a)
{
double x1= 0.0;
double x2 =a/2;

while(x1!=x2)
{
x1=x2;
System.out.println(a/x1);
x2=(x1+a/x1)/2;
}
return x1;
}

6×9的的方格中,起点的左下角,终点在右上角,从起点到终点,只能从下向上,从左向右走,问一共有多少种不同的走法。
A.  4200
B.   5005
C.  1005
D.  以上都不正确

public static int func(int m, int n){

int sum =0;

if(m==0 || n==0){
sum+=1;
}else if(m==1 || n==1){
sum+=m+n;
}else{
for(int i=n;i>=0;i--){
sum+=func(m-1,i);
}
}

return sum;
}

转载于:https://www.cnblogs.com/yunger/p/5814532.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值