fork download
  1. #include <stdio.h>
  2.  
  3. void sort(int *x,int *y);
  4.  
  5. int main(void) {
  6. int x=4,y=8;
  7. sort(&x,&y);
  8. printf("2つの整数x、yを降順に並べ替えると%d,%d",x,y);
  9.  
  10. return 0;
  11. }
  12.  
  13. void sort(int *x,int *y){
  14. if(*x<*y){
  15. int w;
  16. w=*x;
  17. *x=*y;
  18. *y=w;
  19. }
  20. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
2つの整数x、yを降順に並べ替えると8,4