#include <iostream> using namespace std; void paibig(int &a,int &b,int &c){ int temp; if(a<b){ temp=a; a=b; b=temp; } if(a<c){ temp=a; a=c; c=temp; } if(b<c){ temp=b; b=c; c=temp; } } void paismall(int &a,int &b,int &c){ int temp; if(a>b){ temp=a; a=b; b=tem...