Heim > Backend-Entwicklung > C++ > Programm zum Drucken von Voll- und Hohlquadratmustern in C-Sprache

Programm zum Drucken von Voll- und Hohlquadratmustern in C-Sprache

PHPz
Freigeben: 2023-09-03 13:37:04
nach vorne
1629 Leute haben es durchsucht

Programmbeschreibung

In der Geometrie ist ein Quadrat ein regelmäßiges Viereck, das heißt, es hat vier gleiche Seiten und vier gleiche Winkel.

Die massiven und hohlen Quadrate werden wie folgt aussehen

Programm zum Drucken von Voll- und Hohlquadratmustern in C-Sprache

Algorithmus

Für das massive Quadrat –

Accept the Number of Rows from the user to draw the Solid Square
For each Row, Print * for each Column to draw the Solid Square
Nach dem Login kopieren

Für das hohle Quadrat –

Accept the Number of Rows from the user to draw the Hollow Square
For the First and Last Row, Print * for each Column
For the Remaining Rows, Print * for the first and Last Column.
Nach dem Login kopieren

Beispiel

Die chinesische Übersetzung lautet:

Beispiel

/* Program to print hollow and Solid Square pattern */
#include <stdio.h>
int main(){
   int r, c, rows; //Hollow Rhombus
   int r1,c1, rows1; //Solid Rhombus
   clrscr();
   /* Hollow Square */
   printf("Enter the Number of rows for Hollow Square: ");
   scanf("%d", &rows);
   printf("</p><p>");
   for (r=1; r<=rows; r++){
      if (r==1 || r==rows){
         for (c=1; c<=rows; c++){
            printf("*");
         }
      }
      else{
         for (c=1; c<=rows; c++){
            if (c==1 || c==rows){
               printf("*");
            }
            else{
               printf(" ");
            }
         }
      }
      printf("</p><p>");
   }
   printf("</p><p>");
   /* Solid Square */
   printf("Enter the Number of rows for Solid Square: ");
   scanf("%d", &rows1);
   printf("</p><p>");
   for (r1=1; r1<=rows1; r1++){
      for (c1=1; c1<=rows1; c1++){
         printf("*");
      }
      printf("</p><p>");
   }
   getch();
   return 0;
}
Nach dem Login kopieren

Ausgabe

Programm zum Drucken von Voll- und Hohlquadratmustern in C-Sprache

Das obige ist der detaillierte Inhalt vonProgramm zum Drucken von Voll- und Hohlquadratmustern in C-Sprache. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Verwandte Etiketten:
Quelle:tutorialspoint.com
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage