Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
1607 张曦元 幸运数字 C++ 通过 100 0 MS 188 KB 182 2019-10-14 19:42:37

Tests(1/1):


#include <stdio.h> int main() { int n,m,count=0; scanf("%d%d",&n,&m); for(int i=n;i<=m;i++) { if(i%6==0||i%8==0) { count++; } } printf("%d\n",count); }


测评信息: