4.有一个函数 y=x*x+2x (x<=1)
y=根号下x*x+1 (x>1)
写一个方法func3(),对任意参数x,返回y的值。
首先编写一个方法func 然后需要用到double类型
package oracle.zibo.exam;public class f3 { public static void main(String[] args) { } public static double func3(int x){ }}
然后用if else 在括号里写入条件 然后返回y的值,最后在主方法里进行输出
package oracle.zibo.exam;public class f3 { public static void main(String[] args) { System.out.println(func3(1)); } public static double func3(int x){ double y; if(x<=1){ y=x*x+2*x; }else{ y=Math.sqrt(x*x+1); } return y; }}
输出1,运行结果: