import java.util.*; public class Equation { public static void main(String[] args) { float a,b,c; Scanner sc = new Scanner(System.in); System.out.print("Entrez le premier coefficient:"); a=sc.nextFloat(); System.out.print("Entrez le deuxième coefficient:"); b=sc.nextFloat(); System.out.print("Entrez le troisième coefficient:"); c=sc.nextFloat(); System.out.print("Voici votre équation saisié :"); System.out.println(a+"x²"+b+"x"+c); if(a==0){ if(b==0){ if(c==0){ System.out.println("La soltuion est l'ensemble R"); } else System.out.println("La solution est l'ensemble vide");} else System.out.println("La solution est:"+(-c/b));} else { float d; d=(b*b)-4*a*c; if(d>0) { System.out.println("Solution 1 :"+(-b-Math.sqrt(d))/(2*a)); System.out.println("Solution 2:"+(-b+Math.sqrt(d))/(2*a));} else System.out.print("la solution est un nombre complexe"); }}}
- Monday
- December 23rd, 2024
- Ajouter un cours