Vize ödevi

fabrein
23-02-2022, 13:34   |  #1  
fabrein avatarı
OP Taze Üye
Teşekkür Sayısı: 0
11 mesaj
Kayıt Tarihi:Kayıt: Şub 2022

A, b, c, d, e, ve f  sayıları bilgisayar tarafından girilecek. İpucu olarak scanf() komunutu kullanabilirsiniz. Bunlar kesirli sayı olmalıdır. X ve Y'nin değerleri ekrana yazılmalıdırr


X= (ce-bf) / (ae-bd)
Y= (af-cd) / (ae-bd)

adam77
08-05-2022, 20:09   |  #2  
Taze Üye
Teşekkür Sayısı: 0
1 mesaj
Kayıt Tarihi:Kayıt: May 2022

#include <iostream>

int main() {

        double a, b, c, d, e, f, x, y;
        std::cout << "A: ";
        std::cin >> a;

        std::cout << "B: ";
        std::cin >> b;

        std::cout << "C: ";
        std::cin >> c;

        std::cout << "D: ";
        std::cin >> d;

        std::cout << "E: ";
        std::cin >> e;

        std::cout << "F: ";
        std::cin >> f;
        // X= (ce-bf) / (ae-bd)
        double ce = c * e;
        double bf = b * f;
        double ae = a * e;
        double bd = b * d;
        x = (ce - bf) / (ae - bd);
        std::cout << "X: " << x << std::endl;
        //Y = (af - cd) / (ae - bd)
        double af = a * f;
        double cd = c * d;
        y = (af - cd) / (ae - bd);
        std::cout << "Y: " << y;
}

Son Düzenleme: adam77 ~ 08 Mayıs 2022 20:10