程序目的是调换两位数的个位与十位 #include <stdio.h> inv(int n) { int i,j; i=n/10; j=n%10; return(j*10+i); } main()
{ int h=21; inv(h); printf("%d",h); }