Răspuns:
E destul de simplu
notezi cu x-globuri rosii, y- globuri albastre si z globurile verzi
sti ca globurile verzi sunt de 2 ori suma celor rosii si albastre
a)x=5,y=3;
z=2*(5+3)=16
Nr total: x+y+z
Algoritmul ar fii (C++)
int x, y;
cin>>x;cin>y;
int z=2*(x+y);
std::cout<<x+y+z;
b) if(z%2==0)true; else false;
c)raspunsul il gasesti in a
Explicație: