题解 1509: 蓝桥杯算法提高VIP-图形输出

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

傻逼图形输出

摘要:#include<bits/stdc++.h>using namespace std;int main(){ printf( " X | X | X\n"    "---+---+---\n"    ……

WU-图形输出 (C++代码)

摘要:直接把图形复制过来在输出就好参考代码:#include<iostream> using namespace std; int main() {     cout<<" X | X | X "<……