[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
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
댓글
댓글 쓰기