#include<math.h>#include<stdio.h>swap(int x,int y){int temp;temp=x;x=y;y=temp;}main(){int a,b;scanf("%d,%d",&a,&b);if(a<b) swap(a,b);printf("%d,%d\n",a,b);}
- 3 回答
- 0 关注
- 1157 浏览
添加回答
举报
0/150
提交
取消