题解 | 被5整除问题
被5整除问题
https://www.nowcoder.com/practice/a4f527b043c04551bf4b80b4275a53bd
#include <stdio.h>
int main() {
    int a;
    while (scanf("%d ", &a) != EOF) { // 注意 while 处理多个 case
        // 64 位输出请用 printf("%lld") to 
        if (a % 5==0) {
           printf("YES");
        }else {
            printf("NO");
        }
    }
    return 0;
}
查看9道真题和解析