Trebuie rezolvat sistemul:
[tex] \left \{ {{G+O=C} \atop {2G+4O=P}} \right.\Leftrightarrow \left \{ {{O=\frac{P}{2}-C} \atop {G=2C-\frac{P}{2}}} \right. [/tex]
Am rezolvat matematic sistemul si vom introduce in program solutia generala.
Trebuie avut in vedere ca sa introducem numerele P si C, astfel incat problema sa aiba solutie. De ex P=24, C=9
P=6,C=2
P=10,C=3 etc...
#include<iostream>
using namespace std;
int main()
{int
C,P,G,O;
cout<<"P=";cin>>P;
cout<<"C=";cin>>C;
G=2*C-P/2;
O=P/2-C;
cout<<G<<" "<<O;
}