题解 | 被5整除问题
#include <stdio.h> int main() { int M; while (scanf("%d", &M) != EOF) { // 注意 while 处理多个 case // 64 位输出请用 printf("%lld") to if(M % 5 == 0) printf("YES\n"); else printf("NO\n"); return 0; } }
#include <stdio.h> int main() { int M; while (scanf("%d", &M) != EOF) { // 注意 while 处理多个 case // 64 位输出请用 printf("%lld") to if(M % 5 == 0) printf("YES\n"); else printf("NO\n"); return 0; } }
相关推荐