
No License
C
2021年01月31日
#include〈stdio.h〉
int main(void)
{
int x;
printf("整数を入力して下さい");
scanf("%d",&x);
if (x % 2)
puts("2で割り切れません");
else
puts("2で割り切れます");
return 0;
}
No one still commented. Please first comment.