HashMap


私信TA

用户名:dotcpp0594175

访问量:8932

签 名:

不写Bug的程序员不是好程序员

等  级
排  名 83
经  验 9412
参赛次数 3
文章发表 190
年  龄 18
在职情况 学生
学  校 湖南有色金属职业技术学院
专  业 有色冶金

  自我简介:

低头赶路,敬事如仪。

TA的其他文章

解题思路:

注意事项:

参考代码:

#include<stdio.h>
void swap(int*x,int*y);
int main()
{
   int a,b;
   scanf("%d%d",&a,&b);
   swap(&a,&b);
   printf("%d %d",a,b);
  return 0;
}
void swap(int*x,int*y)
{
   int temp = *x;
   *x= *y;
   *y=temp;

}


 

0.0分

0 人评分

  评论区

  • «
  • »