返回列表 發帖

[基礎題庫] a006 一元二次方程式

本帖最後由 李泳霖 於 2023-4-29 10:03 編輯

a006: 一元二次方程式





  1. import java.io.BufferedReader;
  2. import java.io.IOException;
  3. import java.io.InputStreamReader;


  4. public class Ch01 {
  5.         BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
  6.         int a,b,c;
  7.         String raw[];
  8.         double tell;
  9.         Ch01() throws IOException
  10.         {
  11.                 raw=br.readLine().split(" ");
  12.                 a=Integer.parseInt(raw[0]);
  13.                 b=Integer.parseInt(raw[1]);
  14.                 c=Integer.parseInt(raw[2]);
  15.                 tell=b*b-4*a*c;//判別式
  16.                 if(tell>0)
  17.                 {
  18.                         int x1=(int)(-b+Math.sqrt(Math.pow(b, 2)-4*a*c)/2*a);
  19.                 }
  20.                 else if(tell==0)
  21.                 {
  22.                        
  23.                 }
  24.                 else
  25.                 {
  26.                        
  27.                 }
  28.                
  29.         }
  30.         public static void main(String[] args) throws IOException {
  31.                 new Ch01();

  32.         }

  33. }
複製代碼
istak.teach2@gmail.com

此帖僅作者可見
istak.teach2@gmail.com

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見
Vincent

TOP

此帖僅作者可見
istak.teach2@gmail.com

TOP

此帖僅作者可見

TOP

此帖僅作者可見
Vincent

TOP

返回列表