[python3] 1110번 더하기 사이클
10의 자리수는 // 연산자를 이용해 변수에 저장, 1의 자리수는 % 연산자를 이용해 변수해 저장해 사이클을 돌리면 된다. N = int(input()) M = N repeat = 0 while N != M or repeat == 0: cycle10 = N // 10 cycle1 = N % 10 cycle = (cycle10 + cycle1) % 10 cycle10 = cycle1 cycle1 = cycle N = cycle10 * 10 + cycle1 repeat += 1 print(repeat)
문제 풀이/Baekjoon Online Judge
2018. 3. 15. 16:25
[C언어 프로젝트] 메이플스토리 구애의춤
메이플스토리의 구애의 춤을 만들어 보았습니다. 모양에 맞는 방향키를 누르시면 됩니다. 클리어 화면입니다. 소스코드입니다. #include #include #include #include #include #define _CRT_SECURE_NO_WARNINGS #define LEFT 75 #define RIGHT 77 #define UP 72 #define DOWN 80 // 8~11번째 줄 키보드 방향키 아스키코드값 #define DanceBoard_X 39 // Dance 가로크기 #define DanceBoard_Y 4 // Dance 세로크기 #define Void 0 // 빈 부분 #define True 1 #define False 0 #define Fail 200 // 실패 플래그 값 int D..
프로그래밍/C
2017. 11. 17. 09:55