王晨逸 • 18天前
#include <stdio.h> int main() { int a; scanf("%d", &a); if (a > 0) { printf("YES\n"); } else { printf("NO\n"); } return 0; }
评论: