#include "stdio.h"
main()
{int x;
scanf("%d",x);
if(-1<x&&x<10)
printf("ok");
else
printf("not ok");
}
3
最新推荐文章于 2024-07-28 07:00:00 发布
#include "stdio.h"
main()
{int x;
scanf("%d",x);
if(-1<x&&x<10)
printf("ok");
else
printf("not ok");
}