Board logo

標題: [模擬考] TQC+ 106 [打印本頁]

作者: 張健勳    時間: 2017-6-10 12:14     標題: [模擬考] TQC+ 106

完成" TQC+ 106 "題目
作者: 王彥甯    時間: 2017-6-10 12:15

  1. public class JPD01 {
  2.     public static void main(String[] args)
  3.     {
  4.             System.out.printf("f(-3.2)=%.4f\n",f(-3.2));
  5.             System.out.printf("f(-2.1)=%.4f\n",f(-2.1));
  6.             System.out.printf("f(0)=%.4f\n",f(0));
  7.             System.out.printf("f(2.1)=%.4f\n",f(2.1));
  8.     }
  9.     static double f(double x)
  10.     {
  11.             return 3*(Math.pow(x, 3))+2*x-1;
  12.     }
  13. }
複製代碼

作者: 張健勳    時間: 2017-6-10 12:19

  1. public class JPA01 {
  2.    
  3.         public static void main(String args[])
  4.         {
  5.                
  6.                 f(-3.2);
  7.                 f(-2.1);
  8.                 f(0);
  9.                 f(2.1);
  10.                
  11.         }

  12.         public static void f(double x) {
  13.                
  14.                 System.out.printf("f(%f) = %.4f ",3*x*x*x+2*x-1);
  15.         }
  16.        





  17. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2