欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

编写一main()函数,要求利用指针,实现从键盘输入三个数,然后按照由小到大的顺序输出此三个数。

程序员文章站 2022-07-15 12:24:28
...
#include<stdio.h>
int main()
{
  int a,b,c,t;
  int *p1=&a,*p2=&b,*p3=&c;
  printf("Input a,b,c:");
  scanf("%d,%d,%d",&a,&b,&c);
  if(*p1>*p2){t=*p1;*p1=*p2;*p2=t;}
  if(*p1>*p3){t=*p1;*p1=*p3;*p3=t;}
  if(*p2>*p3){t=*p2;*p2=*p3;*p3=t;}
  printf("The result is:%d,%d,%d\n",*p1,*p2,*p3);
}

编写一main()函数,要求利用指针,实现从键盘输入三个数,然后按照由小到大的顺序输出此三个数。

相关标签: c语言