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