#include <stdio.h>
#include <math.h>
#include <stdlib.h>
// declare function
void swap(int *a, int *b);
// define function
void swap(int *a, int *b)
{
int temp;
temp=*a;
*a=*b;
*b=temp;
}
void sort(int *p1,int *p2,int *p3, int *p4)
{
if(*p1<*p2) swap(p1,p2);
if(*p1<*p3) swap(p1,p3);
if(*p1<*p4) swap(p1,p4);
if(*p2<*p3) swap(p2,p3);
if(*p2<*p4) swap(p2,p4);
if(*p3<*p4) swap(p3,p4);
}
int main()
{
int *p1,*p2,*p3,*p4,a,b,c,d;
printf("enter four integers\n");
scanf("%d %d %d %d", &a, &b, &c, &d);
p1=&a;
p2=&b;
p3=&c;
p4=&d;
sort (p1,p2, p3, p4);
printf("%d, %d, %d, %d", a, b, c, d);
return 0;
}
运行结果:
enter four integers
10 20 50 3
50, 20, 10, 3
Process returned 0 (0x0)
execution time : 346.391 s
Press any key to continue.
我的是在Code::Blocks 16.01运行可以
感觉你的程序里应该是printf("enter four integers\n");不会出现enter a,b,c,d 你重新另建个文件,重新写一遍程序试试