私信TA
用户名:dotcpp0594175
访问量:8932
签 名:
不写Bug的程序员不是好程序员
自我简介:
低头赶路,敬事如仪。
作者: HashMap 发表时间:2022-12-25 15:20:48 浏览:24 | 评论:0
解题思路:注意事项:参考代码:
#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 人评分
看不懂代码解释一下代码? 或者生成一段代码?试试AI编程助手吧