2 条题解

  • 0
    @ 2023-9-13 14:41:58

    #include<stdio.h> int main() { char ch; scanf("%c",&ch); if(ch%2==0){ printf("NO"); }else if(ch%2!=0){ printf("YES"); } return 0;

    }

    • 0
      @ 2023-8-28 15:19:13

      #include <stdio.h>

      int main() { char a; scanf("%c", &a); if (a % 2 == 0) { printf("NO"); } else { printf("YES"); } return 0; }

      • 1

      信息

      ID
      76
      时间
      1000ms
      内存
      256MiB
      难度
      2
      标签
      (无)
      递交数
      966
      已通过
      566
      上传者