본문 바로가기

Computer Science&Engineering/C\C++

[정올: 정보올림피아드] 128 : 반복제어문1 - 형성평가4 문제풀이

문제

0 이 입력될 때까지 정수를 계속 입력받아 3의 배수와 5의 배수를 제외한 수들의 개수를 출력하는 프로그램을 작성하시오.

내 문제 풀이

#include <stdio.h>

int main() {
	int num = 0, count =0 ;
	
	while (1) {
		scanf("%d", &num);
		
		if(num == 0)
			break;
			
		if(num%3 == 0 || num%5 == 0){
		}
		else
			count++;
	}
	
	printf("%d", count);
	return 0;
}

 

반응형