题解 | #被5整除问题#
被5整除问题
https://www.nowcoder.com/practice/a4f527b043c04551bf4b80b4275a53bd
#include <stdio.h> int main() { int M=0; (1<M<100000); scanf("%d",&M); if(M%5==0) printf("YES"); else printf("NO"); return 0; }
被5整除问题
https://www.nowcoder.com/practice/a4f527b043c04551bf4b80b4275a53bd
#include <stdio.h> int main() { int M=0; (1<M<100000); scanf("%d",&M); if(M%5==0) printf("YES"); else printf("NO"); return 0; }
相关推荐