皓仔的旗杆 题解
2026-08-25 19:26:38
发布于:上海
7阅读
0回复
0点赞
用个for循环
#include<iostream>
using namespace std;
int main(){
cout << "*****" << endl;
cout << "* *" << endl;
cout << "*****" << endl;
for(int i = 1; i <= 4; i++){
cout << '*' << endl;
}
}
这里空空如也





有帮助,赞一个