Chat

#52
by Kaioscar - opened

#include <stdio.h>int main() { int a, b, temp; printf("请输入两个整数:\n"); scanf("%d %d", &a, &b); temp = a; a = b; b = temp; printf("交换后的值为:%d %d\n", a, b); return 0;}

Sign up or log in to comment