本帖最後由 李泳霖 於 2023-4-29 10:03 編輯
a006: 一元二次方程式
- import java.io.BufferedReader;
- import java.io.IOException;
- import java.io.InputStreamReader;
- public class Ch01 {
- BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
- int a,b,c;
- String raw[];
- double tell;
- Ch01() throws IOException
- {
- raw=br.readLine().split(" ");
- a=Integer.parseInt(raw[0]);
- b=Integer.parseInt(raw[1]);
- c=Integer.parseInt(raw[2]);
- tell=b*b-4*a*c;//判別式
- if(tell>0)
- {
- int x1=(int)(-b+Math.sqrt(Math.pow(b, 2)-4*a*c)/2*a);
- }
- else if(tell==0)
- {
-
- }
- else
- {
-
- }
-
- }
- public static void main(String[] args) throws IOException {
- new Ch01();
- }
- }
複製代碼 |