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