java 练习 计算对角线长度

2019年2月16日20:07:50 发表评论 1,280 views
/**
 * Created by xabcd on 2019/2/16.
 */
public class java_mathsqrt
{
    public static void main(String args[]) {
        double num= show_num( 22, 19);
    System.out.println(num);}
        public static double show_num(int a,int b){
    return Math.sqrt(a*a+b*b);
}



    }


发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: