原创 例題1-3 交換變量

//例題1-3 交換變量 /* 輸入兩個整數a和b,交換後輸出 輸入 22 44 輸出 44 22 */ //方法一 中間變量法 #include<stdio.h> int main() { int a,b,t; scanf("%d