| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 | 
|---|---|---|---|---|---|---|---|---|
| 132716 | 蔡胤泽 | 100至200之间的所有素数 | C++ | Accepted | 2 MS | 260 KB | 338 | 2025-10-12 11:01:39 | 
#include <bits/stdc++.h> using namespace std; int main() { for(int i = 100;i <= 200;i++) { //we are testing whether i is a prime??? int a = 0; for(int j = 2;j <= i - 1;j++) { if(i % j == 0) { a = 1; break; } } if(a == 0) { cout << i << endl; } } return 0; }