白駿10991号(By C++)
4100 ワード
質問する
白駿アルゴリズム10991号
コード#コード# #include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
for (int j = n; j > 0; j--) {
for (int i = 2 * (j - 1); i > 0; i -= 2)
cout << ' ';
for (int i = 2 * n - (2 * j - 1); i > 0; i--) {
if (i % 2 == 1)
cout << '*';
else
cout << ' ';
}
cout << '\n';
}
return 0;
}
Reference
この問題について(白駿10991号(By C++)), 我々は、より多くの情報をここで見つけました
https://velog.io/@lah1203/백준-10991번by-C
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
for (int j = n; j > 0; j--) {
for (int i = 2 * (j - 1); i > 0; i -= 2)
cout << ' ';
for (int i = 2 * n - (2 * j - 1); i > 0; i--) {
if (i % 2 == 1)
cout << '*';
else
cout << ' ';
}
cout << '\n';
}
return 0;
}
Reference
この問題について(白駿10991号(By C++)), 我々は、より多くの情報をここで見つけました https://velog.io/@lah1203/백준-10991번by-Cテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol