#22624: JAVA一直NA 求解


chosixi (unknown)

學校 : 不指定學校
編號 : 129174
來源 : [223.138.229.190]
最後登入時間 :
2020-12-12 19:58:30
a006. 一元二次方程式 | From: [223.138.132.240] | 發表日期 : 2020-09-20 11:59

寫的程式如下,不知道哪裡錯誤

再麻煩大大求解

 

 

import java.util.Scanner;

 

/*

 * To change this license header, choose License Headers in Project Properties.

 * To change this template file, choose Tools | Templates

 * and open the template in the editor.

 */

/**

 *

 * @author cho02

 */

public class Main {

 

    /**

     * @param args the command line arguments

     */

    public static void main(String[] args) {

        // TODO code application logic here

 

        Scanner sc = new Scanner(System.in);

        while (sc.hasNextInt()) {

            int a = sc.nextInt();

            int b = sc.nextInt();

            int c = sc.nextInt();

 

            int d = (b * b) - (4 * a * c);

 

            if (d < 0) {

                System.out.println("No real root");

            } else if (d == 0) {

                int ans;

                ans = -b  / 2 * a;

                System.out.printf("Two same roots x=%d", ans);

            } else if (d > 0) {

                int ans, ans1;

                ans = (-b + (int) (Math.sqrt(d))) / 2 * a;

                ans1 = (-b - (int) (Math.sqrt(d))) / 2 * a;

                System.out.printf("Two different roots x1=%d , x2=%d", ans, ans1);

            }

 

        }

 

    }

 

}

 

 
#22634: Re:JAVA一直NA 求解


snakeneedy (蛇~Snake)

學校 : 國立高雄師範大學附屬高級中學
編號 : 7661
來源 : [114.40.8.251]
最後登入時間 :
2023-01-25 19:16:06
a006. 一元二次方程式 | From: [218.161.41.139] | 發表日期 : 2020-09-21 13:11

我猜是 printf 的字串結尾少了個換行 \n

 
#22635: Re:JAVA一直NA 求解


snakeneedy (蛇~Snake)

學校 : 國立高雄師範大學附屬高級中學
編號 : 7661
來源 : [114.40.8.251]
最後登入時間 :
2023-01-25 19:16:06
a006. 一元二次方程式 | From: [218.161.41.139] | 發表日期 : 2020-09-21 13:19

看到另外一個問題是算式錯誤

ans = (-b + (int) (Math.sqrt(d))) / 2 * a;
  ans1 = (-b - (int) (Math.sqrt(d))) / 2 * a;

應該為

ans = (-b + (int) (Math.sqrt(d))) / (2 * a);
ans1 = (-b - (int) (Math.sqrt(d))) / (2 * a);
 
ZeroJudge Forum