#include
int main()
{
void fun();//函数的声明
fun();
return 0;
}
void fun()
{
float x;
float y ;
//假设斜线为Y= x;设斜线的下方是在斜线区域内,斜线上和上方为区域外
printf("请输入(x ,y)的值:\n");
printf("请输入x值:");
scanf("%f",&x);
printf("请输入y值:");
scanf("%f",&y);
if(x>y)
printf("TRUE\n");
else
printf("FALSE\n");
}