これは、2 対の対辺が平行な四角形です。
#知っておくべき重要な平行四辺形のプロパティが 6 つあります。// C program to print mirrored hollow parallelogram #include <stdio.h> int main(){ int rows,cols,r,c; clrscr(); /*Clears the Screen*/ printf("Please enter the number of Rows: "); scanf("%d", &rows); printf("</p><p>"); printf("Please enter the number of Columns: "); scanf("%d", &cols); printf("</p><p>"); printf("The Mirrored Hollow Parallelogram is: "); printf("</p><p>"); for(r = 1; r <= rows; r++){ // Display spaces for(c = 1; c < r; c++) { printf(" "); } // Display hollow parallelogram for(c = 1; c <= cols; c++) { if (r == 1 || r == rows || c == 1 || c == cols) { printf("*"); } else { printf(" "); } } printf("</p><p>"); } getch(); return 0; }
以上がC 言語でプログラムを作成し、鏡面中空の平行四辺形を印刷するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。