其他分享
首页 > 其他分享> > 比较大小10.15

比较大小10.15

作者:互联网

#include <stdio.h>

int main(){
  int a,b,c,temp; 
  scanf("%d %d %d",&a,&b,&c);
  if(a>b){
    temp=a;
    a=b;
    b=temp;
  }
      if(a>c){
      temp=a;
      a=c;
      c=temp;
    }
  
  if(b>c){
    temp=b;
    b=c;
    c=temp;
  }
  printf("%d->%d->%d",a,b,c);
  return 0;
}

 

标签:return,temp,int,scanf,printf,大小,main,10.15,比较
来源: https://blog.csdn.net/qq_62846665/article/details/120783566