过不了

ZHpeter  •  2年前



评论:

再检查一下代码或者把代码发出来


Ender  •  2年前

注意一下空格之类的


匿名用户  •  2年前

include<bits/stdc++.h>

using namespace std;

int main() {

cout<<"   *       *\n";
cout<<"  ***     ***\n";
cout<<" *****   *****\n";
cout<<"******* *******\n";
cout<<"   *       *\n";
cout<<"   *       *\n";
return 0;

}


zhangdeyi  •  2年前

你的每行要补满空格


MattL  •  2年前

像这样

cout<<" *****   ***** \n";
cout<<"******* *******\n";

MattL  •  2年前