2021-09-13

用指针的方式编写一个数字排序<难度系数⭐>

老铁从今天开始我们将接触指针的用法!
例题:输入三个数字,用指针进行排序,然后输出
源代码:

#include<stdio.h>
void swap(int* pa, int* pd)
{
	int t = 0;
	t = *pa;
	*pa = *pd;
	*pd = t;
}
int main()
{
	int a, b, c, temp;
	scanf_s("%d%d%d", &a, &b, &c);
	if (a > b)swap(&a, &b);
	if (a > c)swap(&a, &c);
	if (b > c)swap(&b, &c);
	printf("%d\t%d\t%d\t", a, b, c);
}

运行结果:
2021-09-13

上一篇:LeetCode283 移动零


下一篇:swap命令