Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
16277 贺昱翔 统计整除数字的个数 C++ 编译错误 0 0 MS 0 KB 170 2021-03-07 11:12:55

Tests(0/0):


#include<bits/stdc++.h> using namespace std; int main(){ int m,n,a,ans=0; cin>>m>>n>>a; for(int i=m;i<=n;i++){ if(i%a==0) ans++; } cout<<ans; return 0;


测评信息: