Eine Pyramide ist ein Polyeder, das durch die Verbindung der Basis eines Polygons und Punkten, sogenannten Eckpunkten, gebildet wird. Jede Basis und jeder Scheitelpunkt bilden ein Dreieck, das als Seite bezeichnet wird. Es ist ein Kegel mit einer vieleckigen Grundfläche. Eine Pyramide mit einer n-seitigen Grundfläche hat n + 1 Eckpunkte, n + 1 Flächen und 2n Seiten. Alle Pyramiden sind selbstdual.
Accept the number of rows from the user to form pyramid shape Iterate the loop till the number of rows specified by the user: Display 1 star in the first row Increase the number of stars based on the number of rows.
/*Program to print Pyramid Pattern*/ #include<stdio.h> int main() { int r, s, rows=0; int t=0; clrscr(); printf("Enter number of rows to print the pyramid: "); scanf("%d", &rows); printf("</p><p>"); printf("The Pyramid Pattern for the number of rows are:"); printf("</p><p></p><p>"); for(r=1;r<=rows;++r,t=0) { for(s=1; s<=rows-r; ++s){ printf(" "); } while (t!=2*r-1) { printf("* "); ++t; } printf("</p><p>"); } getch(); return 0; }
Das obige ist der detaillierte Inhalt vonSchreiben Sie ein Programm in C-Sprache, um ein Pyramidenmuster zu drucken. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!