Files
python/TangDou/XiTi/1102.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

13 lines
231 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
for (int i = 1000; i <= 1100; i++) {
if (i % 3 == 2 && i % 5 == 3 && i % 7 == 2) {
cout << i << endl;
}
}
return 0;
}