Maison  >  Article  >  développement back-end  >  Programme pour imprimer des motifs carrés pleins et creux en langage C

Programme pour imprimer des motifs carrés pleins et creux en langage C

PHPz
PHPzavant
2023-09-03 13:37:041536parcourir

Description du programme

En géométrie, un carré est un quadrilatère régulier, ce qui signifie qu'il a quatre côtés égaux et quatre angles égaux.

Les carrés pleins et creux seront les suivants

Programme pour imprimer des motifs carrés pleins et creux en langage C

Algorithme

Pour le carré plein-

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

Pour le carré creux−

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.

Exemple

La traduction chinoise est :

Exemple

/* 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;
}

sortie

Programme pour imprimer des motifs carrés pleins et creux en langage C

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer