指针

来源:互联网 发布:nba历史各项数据排行榜 编辑:程序博客网 时间:2024/05/23 00:32
//输入的三个整数按大小顺序输出,用函数处理,
#include<stdio.h>
#include<math.h>
void swap(int *pt1,int *pt2)
{
    int temp;
    temp=*pt1;
    *pt1=*pt2;
    *pt2=temp;
}
void exchange(int *q1,int *q2,int *q3)
{if(*q1<*q2) swap(q1,q2);
if(*q1<*q3) swap(q1,q3);
if(*q2<*q3) swap(q2,q3);
}
 int main()
{
    int a,b,c,*p1,*p2,*p3;
     printf("please enter three number:");
     scanf("%d%d%d",&a,&b,&c);
     p1=&a;p2=&b;p3=&c;
     exchange(p1,p2,p3);
     printf("the order is:%d,%d,%d\n",a,b,c);
     return 0;
 }
0 0
原创粉丝点击