首頁 > 後端開發 > C++ > 主體

在C語言中編寫一個列印正方形內嵌正方形的程式

王林
發布: 2023-09-02 08:09:06
轉載
1040 人瀏覽過

程式描述

依照下面所示的方式列印一個正方形內的另一個方塊

在C語言中編寫一個列印正方形內嵌正方形的程式

演算法

Accept the number of rows the outer Square to be drawn
Display the Outer Square with the number of rows specified by the User.
Display another square inside the outer square.
登入後複製

Example

的中文翻譯為:

範例

/* Program to print Square inside Square */
#include <stdio.h>
int main()
{
   int r, c, rows;
   clrscr();
   printf("Enter the Number of rows to draw Square inside a Square: ");
   scanf("%d", &rows);
   printf("</p><p>");
   for (r = 1; r <= rows; r++){
      for (c = 1; c <= rows; c++){
         if ((r == 1 || r == rows || c == 1 || c == rows) || (r >= 3 && r <= rows - 2 && c >= 3 && c             <= rows - 2) && (r == 3 || r == rows - 2 || c == 3 || c == rows - 2)){
               printf("#");
         }
         else{
            printf(" ");
         }
      }
      printf("</p><p>");
   }
   getch();
   return 0;
}
登入後複製

輸出

在C語言中編寫一個列印正方形內嵌正方形的程式

#

以上是在C語言中編寫一個列印正方形內嵌正方形的程式的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板