Considere el algoritmo siguiente ¿qué valores se imprimen en
pantalla x, y, z?
void main () {
int x, y, z;
x=100; y=200; z=300;
intercambia (x, y, z);
print (“x=%d, y=%d, z=%d” x,y,z)
}
void intercambia (int a, int b, int c) {
int aux, temp;
if (a < b) {
aux=a; a=b; b=aux;
}
if (a<c) {
temp=a ; a=c ; c=temp ;
}
}
Selecione uma das seguintes: