题解列表

筛选

这种题还需要看题解吗?

摘要:解题思路:就循环注意事项:参考代码:for i in range(10,1001):     if i%2==0 and i%3==0 and i%7==0:         print(i)……

不会简单的写法

摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split())) b=list(map(int,input().split())) c=0 d=0 e=0 fo……

水仙花数--问题1--C语言

摘要:解题思路:本题使用的是数组以及求出各数字的组成注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int num = 0; int i; in……