Informatică, întrebare adresată de vladislavtv96, 8 ani în urmă

online C++ computer
pls e urgent

Anexe:

Răspunsuri la întrebare

Răspuns de Yotaro
1

Răspuns:

#include <iostream>

#include <cmath>

using namespace std;

int main()

{

   int x, y, e;

   cout << "\n x = ";

   cin >> x;

   cout << "\n y = ";

   cin >> y;

   e = (pow(7 * x + 6 * pow(y, 2), 3) / abs(2 * x + 2 * pow(y, 2))) + ((3 * sqrt(x + 3 * pow(y, 2)) + 7 * x) / pow(6 * x + 7 * y, 3));

   cout << "\n E = " << e;

}

Explicație:

Anexe:
Alte întrebări interesante