8-2入力の2つの整数の値を大きいから小さい順に出力します
693 ワード
// a,b ,
#include<iostream.h>
#include<conio.h>
int main()
{
int *p1,*p2,*p,a,b;
cin>>a>>b;
p1=&a;
p2=&b;
if(a<b) /* a,b , a,b ,
*p1,*p2 ,C
*/
{
p=p1;
p1=p2;
p2=p;
}
cout<<"max="<<*p1<<" "<<"min="<<*p2<<endl;
getch();
return 0;
}