#include <stdio.h>
int main()
{
int Number;
printf("정수를 입력하시오 : 7");
scanf("%d", &Number);
printf("\n");
((Number % 2) == 0) ? printf("짝수입니다.\n") : printf("홀수입니다.\n");
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: