camellia


私信TA

用户名:dotcpp0601803

访问量:107

签 名:

等  级
排  名 41297
经  验 365
参赛次数 0
文章发表 1
年  龄 0
在职情况 学生
学  校 北京邮电大学
专  业

  自我简介:

TA的其他文章

解题思路:用指针引用两个变量的地址进行数字交换

注意事项:指针取地址

参考代码:

#include<stdio.h>


void swap(int *a,int *b);


int main()

{

int a,b;

scanf("%d %d",&a,&b);

swap(&a,&b);

printf("%d %d\n",a,b);

}


void swap(int *a,int *b)

{

int temp;

temp=*a;

*a=*b;

*b=temp;

}


 

0.0分

0 人评分

  评论区

  • «
  • »