交换两个变量的值 代码流程图运行结果 代码 #include<stdio.h> int main() { int a, b, t; a = 3, b = 5; t = a; a = b; b = t; printf(“a=%d\nb=%d”, a, b); return 0; } 流程图 运行结果