Run ID Author Problem Lang Verdict Score Time Memory Code Length Submit Time
330947 路明泽 【C1-4】数据交换 C++ Accepted 100 4 MS 192 KB 212 2025-07-11 13:00:31

Tests(4/4):


#include <stdio.h> int main() { int a, b, temp; scanf("%d %d", &a, &b); // 交换a和b的值 temp = a; a = b; b = temp; printf("%d %d\n", a, b); return 0; }


Judgement Protocol: