👤

VA ROGGGG!!!! În C++ !!!! Cat de repede se poate va roog

VA ROGGGG În C Cat De Repede Se Poate Va Roog class=

Răspuns :

g găini
i iepuri= 3 x g
p pui = 2 x (i + g)

Răspuns:

#include <iostream>

using namespace std;

int main()

{

   int g,i,p;

   cin >> g;

   i = 3*g;

   p = 2*(g+i);

   cout << "Numarul total de animale: " << g+i+p << endl;

   cout << "Avem " << g << " gaini, " << i << " iepuri si " << p << " de pui";

   return 0;

}

Explicație: