Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132319 胡海峰老师 13能被13整数的数 C++ Accepted 1 MS 268 KB 239 2025-10-07 22:11:04

Tests(10/10):


Code:

#include <iostream> //designed by hu 2025-10 using namespace std; int main(){ int tot =0; int m,n; cin>>m>>n; for(int i=m;i<=n;i++) { if(i%13==0) { tot += i; } } cout<< tot; return 0; }