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