這是一個四邊形,其中兩對對邊是平行的。
有六個重要的平行四邊形屬性需要了解
// 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中文網其他相關文章!