返回列表 發帖

[模擬考] TQC+ 106

完成" TQC+ 106 "題目

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

返回列表