题解列表

筛选

报时助手Python

摘要:解题思路:注意事项:参考代码:nums = {0:'zero',  1:'one',  2:'two',  3:'three',  4:……

筛选N以内素数

摘要:解题思路:1.遍历2-N的每一个数2.用求模方式判断是否是素数注意事项:参考代码:#include<stdio.h> int main() {     int n,i,j;     scanf……

与2无关的数

摘要:参考代码: ```c #include int m(int a) { while(a) { int b=a%10; if(b==2) ……