H2330823092


私信TA

用户名:dotcpp0688949

访问量:182

签 名:

等  级
排  名 4494
经  验 1684
参赛次数 8
文章发表 5
年  龄 0
在职情况 学生
学  校 Hezhou University
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include<stdio.h>

int swap(int *a,int *b){

int  temp;

temp=*a;

*a=*b;

*b=temp;

return 0;

int main(){

int a,b;

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

swap(&a,&b);

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

return 0;

}


 

0.0分

1 人评分

  评论区

  • «
  • »