標題:
[模擬考] TQC+ 106
[打印本頁]
作者:
張健勳
時間:
2017-6-10 12:14
標題:
[模擬考] TQC+ 106
完成" TQC+ 106 "題目
作者:
王彥甯
時間:
2017-6-10 12:15
public class JPD01 {
public static void main(String[] args)
{
System.out.printf("f(-3.2)=%.4f\n",f(-3.2));
System.out.printf("f(-2.1)=%.4f\n",f(-2.1));
System.out.printf("f(0)=%.4f\n",f(0));
System.out.printf("f(2.1)=%.4f\n",f(2.1));
}
static double f(double x)
{
return 3*(Math.pow(x, 3))+2*x-1;
}
}
複製代碼
作者:
張健勳
時間:
2017-6-10 12:19
public class JPA01 {
public static void main(String args[])
{
f(-3.2);
f(-2.1);
f(0);
f(2.1);
}
public static void f(double x) {
System.out.printf("f(%f) = %.4f ",3*x*x*x+2*x-1);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2