摘要: 1.3 顺序结构设计 变量交换 三变量法: #include <stdio.h> int main() { int a, b, t; scanf("%d %d", &a, &b); t = a; a = b; b = t; printf("%d %d\n", a, b); return 0; } 不 阅读全文
posted @ 2020-10-31 22:37 Hziqng 阅读(74) 评论(0) 推荐(0)