[BOJ] 10996 별찍기 - 21
문제 : https://www.acmicpc.net/problem/10996
주어진 조건에 따라 별을 찍는 프로그램을 작성하는 문제
주어진 조건에 따라 별을 찍는 프로그램을 작성하는 문제
#include <iostream> using namespace std; int main(){ int n; cin>>n; for(int i=0;i<n;i++){ if(n%2==1) for(int j=0;j<=n/2;j++) cout<<"* "; else for(int j=0;j<n/2;j++) cout<<"* "; cout<<endl; for(int j=0;j<n/2;j++) cout<<" *"; cout<<endl; } }
No comments: