Inverted Butterfly Pattern
Coddyの「星型パターン・ブートキャンプ」コースのレッスン 21/30。
チャレンジ
中級以下に示すような、星印による逆向きのバタフライパターンを出力するプログラムを作成してください。 このパターンは10行10列で構成されます。
期待される出力パターン:
* * * * * * * * * *
* * * * * * * *
* * * * * *
* * * *
* *
* *
* * * *
* * * * * *
* * * * * * * *
* * * * * * * * * * 自分で試してみよう
#include <stdio.h>
int main() {
// ここにコードを記述します
return 0;
};星型パターン・ブートキャンプのすべてのレッスン
4Advanced Level Pattern's
Upper Butterfly PatternLower Butterfly PatternFull Butterfly PatternInverted Butterfly PatternSand glass patternHeart Pattern3Intermediate Level Pattern's
Pyramid of starsInverted PyramidDiamond PatternRight Direction ArrowLeft Direction ArrowPlus PatternX Pattern