[정올] Language Coder_반복제어문1_자가진단5_code540 (C/Python)

두비니

·

2020. 3. 15. 02:03

 

뭐, 굉장히 도움되는 힌트네요.

 

 

<C>

#include <stdio.h>

int main() {
	int a, sum = 0, num=0;

	while (1) {
		scanf("%d", &a);
		if (a == -1)
			break;
		else if (a % 3 == 0) {
			printf("%d\n", a / 3);
		}
	}
	return 0;
} 

 

 

<Python>

while True:
    n = int(input())
    if n == -1:
        break
    elif n % 3 != 0:
        continue
    else:
        print("%d"%(n/3))

 

코드를 작성할 때 꼭 -1일때는 먼저 검사해야 할지에 대해 고민해봅시다