fork download
  1. #include <stdio.h>
  2.  
  3. void scanfull(int *x,int *y,int *z);
  4. void ascend(int *x,int *y,int *z);
  5. void swap(int *x,int *y);
  6.  
  7. int main(void) {
  8.  
  9. int a,b,c;
  10.  
  11. scanfull(&a,&b,&c);
  12.  
  13. ascend(&a,&b,&c);
  14.  
  15. printf("昇順:%d %d %d\n",a,b,c);
  16. return 0;
  17. }
  18.  
  19. void scanfull(int *x,int *y,int *z){
  20. scanf("%d%d%d",x,y,z);
  21. }
  22.  
  23. void ascend(int *x,int *y,int *z){
  24.  
  25. if(*x>*y){
  26. swap(x,y);
  27. }
  28. if(*y>*z){
  29. swap(y,z);
  30. }
  31. if(*x>*y){
  32. swap(x,y);
  33. }
  34. }
  35.  
  36.  
  37. void swap(int *x,int *y){
  38.  
  39. int temp;
  40. temp=*x;
  41. *x=*y;
  42. *y=temp;
  43.  
  44. }
  45.  
  46.  
Success #stdin #stdout 0s 5284KB
stdin
3 2 1
stdout
昇順:1 2 3