p95_3.3

Posted cherrydream

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了p95_3.3相关的知识,希望对你有一定的参考价值。

 1 import java.util.Scanner;
 2 public class LinearEquation {
 3     public static void main(String[] args){
 4         double a, b, c, d, e, f, x, y;
 5         System.out.println("Enter a,  b, c, d, e, f");
 6         Scanner input = new Scanner(System.in);
 7         a = input.nextDouble();
 8         b = input.nextDouble();
 9         c = input.nextDouble();
10         d = input.nextDouble();
11         e = input.nextDouble();
12         f = input.nextDouble();
13         if((a*d)-(b*c) == 0){
14             System.out.println("The equation has no solution");
15         }
16         else{
17         x=((e*d)-(b*f))/((a*d)-(b*c));
18         y=((a*f)-(e*c))/((a*d)-(b*c));
19         System.out.println("x is " + x + " and y is " + y);
20         }
21     }
22 }

 

以上是关于p95_3.3的主要内容,如果未能解决你的问题,请参考以下文章

csp-s模拟95

4.3 合并重复的条件执行片段

3.3-3.9 周记

带有片段着色器的OpenGL 3.3不同颜色

《Linux内核 核心知识全解析(完)》

Java连载95-流的继承结构图FileInputStream举例