본문 바로가기

백준/C

[BaeKJoon/C] 백준15680 c 연세대학교

반응형

https://www.acmicpc.net/problem/15680

 

15680번: 연세대학교

연세대학교의 영문명은 YONSEI, 슬로건은 Leading the Way to the Future이다. 이를 출력하는 프로그램을 작성해보도록 하자.

www.acmicpc.net

 

문제

  • N = 0일 경우: 연세대학교의 영문명을 출력한다.
  • N = 1일 경우: 연세대학교의 슬로건을 출력한다.

풀이

if문으로 N이 0과 1일때 각각 printf로 조건에 맞게 출력하면된다. 아주 쉽다.

 

코드

1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
 
int main() { 
 
int a;
scanf("%d"&a);
 
if (a == 0)
printf("YONSEI");
 
 
else printf("Leading the Way to the Future");
}
cs

 

 

https://www.acmicpc.net/problem/15680

 

15680번: 연세대학교

연세대학교의 영문명은 YONSEI, 슬로건은 Leading the Way to the Future이다. 이를 출력하는 프로그램을 작성해보도록 하자.

www.acmicpc.net

 

반응형