A432.输出图形3题解:
2026-02-13 21:45:24
发布于:四川
2阅读
0回复
0点赞
A432.输出图形3
骗测试点习惯了,懒得弄
#include <bits/stdc++.h>
using namespace std;
int main(){
cout << " *" << endl;
cout << " * *" << endl;
cout << " * *" << endl;
cout << "* *" << endl;
cout << " * *" << endl;
cout << " * *" << endl;
cout << " *" << endl;
return 0;
}
这里空空如也






有帮助,赞一个