正经题解 | 画个ACGO
2024-05-06 16:18:52
发布于:浙江
127阅读
0回复
0点赞
题目分析
先测再交,养成好习惯。
复制,修改 \
为 \\
,因为\
是特殊字符,需转义,最后输出。
AC代码
#include <iostream>
using namespace std;
int main() {
cout << " ___ ______ _______ ______ " << endl;
cout << " / \\ / | / _____| / __ \\ " << endl;
cout << " / ^ \\ | ,----'| | __ | | | | " << endl;
cout << " / /_\\ \\ | | | | |_ | | | | | " << endl;
cout << " / _____ \\ | `----.| |__| | | `--' |" << endl;
cout << "/__/ \\__\\ \\______| \\______| \\______/" << endl;
return 0;
}
复杂度
。
这里空空如也
有帮助,赞一个