初學c語言【2】用和不用中間參量進行兩個數交換

#include<stdio.h>
int main()
{
 int a,b,c;
 c=0;
 printf("請輸入兩個數字\n");
 scanf("%d %d",&a,&b);
 c=b;
 b=a;
 a=c;
 printf("%d  %d",a,b);
 return 0;
 }//存在中間變量進行兩個數交換

#include<stdio.h>
int main()
{
    int a,b;
    printf("請輸入兩個數字「);
    scanf("%d  %d",&a,&b);
    a=a+b;
    b=a-b;
    a=a-b;
    printf("%d %d,a,b);
    return 0;
}//沒有中間變量進行兩數交換

```c
在這裏插入代碼片
相關文章
相關標籤/搜索