Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
1438 张志鹏 幸运数字 C++ 通过 100 0 MS 256 KB 184 2019-10-09 20:07:47

Tests(1/1):


#include<iostream> int main(){ int a,b,c=0,d=0; scanf("%d %d",&a,&b); c=a; while (c<=b) { if (c%6==0||c%8==0) { d=d+1; } c++; } printf("%d",d); return 0; }


测评信息: