1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <iostream>
int main()
{
int a = -1;
int b = -1;
while (scanf("%d%d", &a, &b) !=EOF)
{
if (0 < a && b < 10)
{
printf("%d\n", a + b);
}
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
8줄 EOF
파일의 끝(EOF)
https://www.acmicpc.net/board/view/39199
'프로그래밍 > 알고리즘' 카테고리의 다른 글
백준2562 최대값 (0) | 2019.08.30 |
---|---|
백준 1110 더하기 사이클 (0) | 2019.08.26 |
별찍기 (0) | 2019.08.22 |
백준 10817 세수 (0) | 2019.08.21 |
버블소팅 (0) | 2019.08.21 |