hephuongtrinh

 avatar
unknown
c_cpp
2 years ago
287 B
3
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...