輸入3個整數a,b,c,要求按由小到大的順序將它們輸出,用函式實現

程式設計就這麼點事發表於2020-09-28

用的是函式的巢狀呼叫來做的

#include <stdio.h>
void exchange(int *q1,int *q2,int *q3)
{
void(swap)(int *p1,int *p2);
{
	if(*q1<*q2)
	{
		swap(q1,q2);
	}
	if(*q1<*q3)
	{
		swap(q1,q3);
	}
	if(*q2<*q3)
	{
		swap(q2,q3);
	}
	
	
}
}
void(swap)(int *p1,int *p2)
{
int temp;
temp=*p1;
*p1=*p2;
*p2=temp;
}
int main(void)
{
void exchange(int *q1,int *q2,int *q3);
int a,b,c,*p1,*p2,*p3;
scanf("%d%d%d",&a,&b,&c);
p1=&a,p2=&b;p3=&c;
exchange(p1,p2,p3);
printf("%d,%d,%d\n",a,b,c);
return 0;

}

在這裡插入圖片描述

相關文章