#include <stdio.h>
int main()
{
    int i, c;
    int count=0;
    for(i = 1;i <= 10; i++){
        scanf("%d", &c);
        if(c % 2 ==0)count++; 
            
        
    }
    printf("입력받응수은 %d입니다.", count);
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: