mplicit declaration of function:函数隐性声明,检查下是否导入了正确的头文件。
,题目是写一个函数判断奇偶,我的答案是:
#include <stdio.h>
int jiou(int a)
{
if (a % 2 == 0)
{
printf("True");
}
else
{
printf("False");
}
return 0;
}
int main()
{
int a;
printf("a:\n");
scanf_s("%d", &a);
jiou(a);
return 0;
}