스키마에듀 0218 수업준비_별찍기특집
2023. 2. 16. 16:57ㆍBOJ
728x90
https://www.acmicpc.net/problem/2438
https://www.acmicpc.net/problem/10990
https://www.acmicpc.net/problem/10991
//2438
#include <stdio.h>
int main(void){
int n, i,j;
scanf("%d", &n);
for(i=0;i<n;i++){
for(j=0;j<i+1;j++){
printf("*");
}
puts("");
}
}
//10990
#include <stdio.h>
int main(void){
int n, i,j;
scanf("%d", &n);
for(i=0;i<n;i++){
for(j=0;j<n-i-1;j++){
printf(" ");
}
printf("*");
for(j=0;j<i*2-1;j++){
printf(" ");
}
if(i!=0){
printf("*");
}
puts("");
}
}
//10991
#include <stdio.h>
int main(void){
int n, i,j;
scanf("%d", &n);
for(i=0;i<n;i++){
for(j=0;j<n-i-1;j++){
printf(" ");
}
printf("*");
for(j=0;j<i;j++){
printf(" *");
}
puts("");
}
}
'BOJ' 카테고리의 다른 글
백준 5585 거스름돈 (python) (0) | 2023.02.26 |
---|---|
백준 c언어문제 (0) | 2023.02.21 |
프로그래머스 lv.1 숫자 문자열과 영단어 (python) (0) | 2023.01.20 |
스키마에듀_ 0114 수업준비 (0) | 2023.01.13 |
[프로그래머스 lv.1] 과일장수_python (2) | 2022.11.14 |