Нужно объяснить, как работает программа. Пошагово и с объяснением. 98 баллов. #include


using namespace std;


void swap(int x, int y, int z)

{

int temp;

if(x > y )

{

temp = x;

x = y;

y = temp;

}

if(x > z)

{

temp = x;

x = z;

z = temp;

}

if(y > z)

{

temp = y;

y = z;

z = temp;

}

cout << x << " " << y << " " << z << "\n";

}


int main()

{

int x = 2, y = 6, z = 5;


swap(x, y, z);


system("pause >> null");

return 0;

}
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Copyright © 2024 SCHOLAR.TIPS - All rights reserved.