指针
#include <stdio.h>void main()
{
void exchang(int *q1, int *q2, int *q3);//exchang:使得a>b>c
int a, b, c, *p1, *p2, *p3;
scanf_s("%d %d %d", &a, &b, &c);
p1 = &a;
p2 = &b;
p3 = &c;
exchang(p1, p2, p3);//确保a > b> c
printf("%d,%d,%d\n", a, b, c);
}
void exchang(int *q1, int *q2, int *q3)//int *q1 = p1;
{
void swap(int *pt1, int *pt2);//用于交换
if (*q1 < *q2)
{
swap(q1, q2);
}
if (*q1 < *q3)
{
swap(q1, q3);
}
if (*q2 < *q3)
{
swap(q2, q3);
}
}
void swape(int *pt1, int *pt2)
{
int temp;
temp = *pt1;
*pt1 = *pt2;
*pt2 = temp;
}
好像是swap那里报错,然而我不知道那里错了,请大神指导 swap
void swape(int *pt1, int *pt2)
名字错了,自己在对比下 *q1<*q2,是比较地址大小? 还是。。。。。?
页:
[1]