반응형
SMALL
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | #include <stdio.h> int main(void) { int x, y; int w, h; int mx = 1; int my = 1; scanf("%d %d", &w, &h); scanf("%d %d", &x, &y); int oflag = 0; int cnt = 0; while (cnt < 4) { int flag = 0; if ((x + mx) > w || (x + mx) < 0) { mx = -mx; if (oflag == 1) { cnt++; } flag = 1; } x = x + mx; oflag = 1; if ((y + my) > h || (y + my) < 0) { my = -my; if (flag == 0 && oflag == 1) { cnt++; } } y = y + my; } printf("%d %d\n", x, y); return 0; } |
반응형
LIST
'C언어프로그래밍 > 소스코드' 카테고리의 다른 글
바이오리듬 프로그램 (0) | 2016.05.26 |
---|---|
OJ 1184 모기, 지카바이러스 문제 답 (0) | 2016.05.17 |
OJ 1156 (0) | 2016.04.25 |
OJ 1170 (0) | 2016.04.25 |
OJ 1166 (0) | 2016.04.25 |