函数题:12
int even( int n )
{
if(n%2==0)
return 1;
else
return 0;
}

posted on 2025-03-30 22:44  Swishy  阅读(4)  评论(0)    收藏  举报