题解列表

筛选

基础的筛选n内素数

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;bool is_prim(int i){    bool ans=true;    for(i……

数字的处理与判断

摘要:```python while True: try: a = list(map(int, input())) b = a[-1: -7: -1] print(len(a)) ……