Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

행복한 여성의 날을 위한 프로그램을 C++로 작성

<시간/>

전 세계적으로 10월 7일을 기념하는 여성의 날은 다음과 같이 C++ 프로그래밍 코드에 새겨져 있습니다.

예시

#include <iostream>
using namespace std;
int main(){
   // Initializing size of
   // design
   int n = 5;
   // Loop to print Circle
   // (Upper part of design)
   // Outer loop to
   // control height of
   // design
   for (int i = 0; i <= 2 * n; i++) {
      // Inner loop to control
      // width
      if (i == n)
      cout << " "<< "7 Oct";
      for (int j = 0; j <= 2 * n; j++) {
         // computing distance of
         // each point from center
         float center_dist = sqrt((i - n) * (i - n) + (j - n) * (j - n));
         if (center_dist > n - 0.5 && center_dist < n + 0.5)
            cout << "#";
         else
            cout << " ";
      }
      // Printing HappY Women's DaY
      if (i == n)
         cout << " "<< "Happy Women's Day";
      cout << endl;
   }
   // Loop to print lower part
   // Outer loop to control
   // height
   for (int i = 0; i <= n; i++) {
      // Positioning pattern
      // Loop for Printing
      // horizontal line
      if (i == (n / 2) + 1) {
         for (int j = 0; j <= 2 * n; j++)
            if (j >= (n - n / 2) && j <= (n + n / 2))
               cout << "*";
            else
               cout << " ";
      }
      else {
         for (int j = 0; j <= 2 * n; j++) {
            if (j == n)
               cout << "*";
            else
               cout << " ";
         }
      }
      cout << endl;
   }
}

출력

프로그램은 다음과 같이 위의 코드를 컴파일한 후 다음 출력을 생성합니다.

행복한 여성의 날을 위한 프로그램을 C++로 작성