[C Programming] 1-4. 등록

1 Stage
 Input / Output (입/출력 받아보기)

Problem : 자신이 온라인 저지에서 맞은 문제의 개수와 아이디를 그대로 출력하는 프로그램을 작성.

Input : None.

Output : 첫 줄에 자신이 맞은 문제의 수, 둘째 줄에 아이디를 출력한다.

Example Output :

123
Your_ICPC_Team_Name

Source Code

#include <stdio.h>
int main()
{
    printf("3\n"); // 맞은 문제의 갯수
    printf("zsc621"); // 자신의 아이디
}

Problem Address : https://www.acmicpc.net/problem/7287

댓글

이 블로그의 인기 게시물

[Data Base] 2. E/R 관계성 모델에 대하여..

소소한 이야기, 잡담, 낙서, 기록을 하는 블로그입니다 ^^

[Spring Boot] 1.Spring Boot.. 개발환경 갖추기.