Ajutați-ma ! vă rog!

Răspuns:
1. b)
int a,b,max;
citeste a,b;
|daca(a>b) atunci
| max <- a;
| altfel
| max <- b;
-----sfarsit de daca
Afiseaza max;
2. B) int a,b,c;
citeste a,b,c;
Afiseaza (a+b+c)/3;
3. B) int x,y,z, S, D;
S=x+y+z;
D=x-y-z;
Afiseaza "Suma este: " S;
Afiseaza "Diferenta este: " D;
Explicație: