從標准輸入中獲得2個整數,並將2個整數交換如下。使用指針的概念在你的工作中。打印你的結果在標准輸出。
數據結構:整數數組
輸入:2個由空格隔開的整數
•輸出:2個整數交換
條件:使用指針來交換2個數字
做一個函數
直接貼你的題目比較好,用機器翻譯更看不懂了。
#include <stdio.h>
void s(int *a,int *b)
{
int t = *a;
*a=*b;
*b=t;
}
int main()
{
printf("enter 2 integers:\n");
int a; int b;
scanf("%d %d", &a, &b);
printf("you entered\n%d,%d\n",a,b);
s(&a,&b);
printf("after swapping\n%d,%d\n",a,b);
}