题目内容
输入2个整数a和b,交换其值,然后输出a和b的值。#include int main(void){ int a, b, temp;scanf("%d%d", &a, &b);____________ ;a = b;____________ ;printf("%d %d\n", a, b); return 0;}
查看答案
搜索结果不匹配?点我反馈
更多问题