| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 135750 | 杨浩宇 | 06变换四位数 | C++ | Accepted | 1 MS | 200 KB | 297 | 2025-11-08 12:30:25 |
#include <stdio.h> int main() { int nu; scanf("%d", &nu); int q= nu/ 1000; int b = (nu / 100) % 10; int s = (nu / 10) % 10; int g = nu% 10; int n = b * 1000 + q * 100 + g * 10 + s; printf("%d\n", n); return 0; }