#include <stdio.h>
bool fact(int x, int y)
{
if (x > y)
{
return true;
}
else
{
return false;
}
}
int main()
{
int a = 2;
int ret;
int c = 3;
ret = fact(c, a);
printf("%d", ret);
}
其实也可以用int代替它的功能
#include <stdio.h>
bool fact(int x, int y)
{
if (x > y)
{
return true;
}
else
{
return false;
}
}
int main()
{
int a = 2;
int ret;
int c = 3;
ret = fact(c, a);
printf("%d", ret);
}
其实也可以用int代替它的功能