解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class Main1 {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
while (sc.hasNext()) {
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
int d = sc.nextInt();
int e = sc.nextInt();
int f = sc.nextInt();
int y = (f*a - d*c)/(a*e-d*b);
int x = (c-b*y)/a;
System.out.print(x+" ");
System.out.println(y);
} }
}
0.0分
2 人评分
【蟠桃记】 (C语言代码)浏览:2263 |
【蟠桃记】 (C++代码)(递归计算)浏览:1060 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:1091 |
C语言训练-求素数问题 (C语言代码)浏览:1509 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:932 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:672 |
计算质因子 (C++代码)浏览:1825 |
A+B for Input-Output Practice (III) (C语言代码)浏览:592 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:806 |
WU-链表数据求和操作 (C++代码)浏览:1382 |