Run ID:132318
提交时间:2025-10-07 22:10:31
#include <iostream> //designed by hu 2025-10 using namespace std; int main(){ int tot =0; for(int i=100;i<=200;i++) { if(i%13==0) { tot += i; } } cout<< tot; return 0; }