Run ID:127284

提交时间:2025-07-26 16:44:25

#include<bits/stdc++.h> using namespace std; int main() { int c; for (int j = 100; j <= 200; j++) { c = 0; for (int i = 2; i < j; i++) { if (j % i == 0) { c++; } } if (c == 0) { cout << j << endl; } } return 0; }