Run ID:127288

提交时间:2025-07-26 16:52:21

#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; }