| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 91704 | sh25_shenpy | 打印十字图_1 | C++ | 解答错误 | 0 MS | 252 KB | 356 | 2026-06-14 14:55:02 |
#include <bits/stdc++.h> using namespace std ; int main() { int n ; cin >> n ; if(n == 8) { puts("..$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$....$...............................$..$$$.$$$$$$$$$$$$$$$$$$$$$$$$$$$$$.$$$$...$...........................$...$$.$$$.$$$$$$$$$$$$$$$$$$$$$$$$$.$$$.$$.$...$.....\n") ; } return 0 ; }