hephuongtrinh
unknown
c_cpp
3 years ago
287 B
5
Indexable
#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
int a,b,c,d,e,f;
cout<<"nhập abcdef"; cin>>a>>b>>c>>d>>e>>f;
int x = (c-b*((d*c-f*a)/(d*b - a*e)))/a;
int y = (d*c-f*a)/(d*b - a*e)
cout<<"kết quả "<<x<<y;
return 0;
}Editor is loading...