小金问呀问不会问题

#include <stdio.h>
int main()
{
    int n;
    while(scanf("%d", &n)!=EOF)
    {
        if(n >= 0)
        {
            printf("Yes\n");
        }
        else
        {
            printf("No\n");
        }
    }
    return 0;
}

相关文章:

  • 2021-12-26
  • 2022-12-23
  • 2021-09-03
  • 2021-07-31
  • 2021-10-05
猜你喜欢
  • 2022-12-23
  • 2021-06-09
  • 2022-12-23
  • 2021-10-14
  • 2021-07-01
  • 2021-07-29
  • 2021-09-29
相关资源
相似解决方案