Exercise03_03】的更多相关文章

import java.util.Scanner; public class LinearEquation { public static void main(String[] args){ double a, b, c, d, e, f, x, y; System.out.println("Enter a, b, c, d, e, f"); Scanner input = new Scanner(System.in); a = input.nextDouble(); b = inpu…