why,编译错误,如何改

img


#include <stdio.h>

int main()
{
    double a, b, x;
    scanf("%lg%lg", &a, &b);
    scanf("%lg", &x);
    if (x>=a&&x<b)
    {
        puts("In");
    }
    else
    {
        puts("Out");
    }
    return 0;
}

你是不是没粘全

我按照你这个完全可以啊