Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
1824 王冯俊 幸运数字 C++ 通过 100 0 MS 256 KB 159 2019-10-23 09:58:27

Tests(1/1):


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


测评信息: