判断三位数以内的水仙花数 摘要:解题思路:直接用水仙花数的定义翻译成c语言注意事项:注意灵活的思路。参考代码:#include <stdio.h>int main(){ int a,b,c,number; scanf("%d",&…… 题解列表 2023年01月08日 0 点赞 0 评论 376 浏览 评分:0.0
3012: 分苹果 摘要:```cpp #include using namespace std; int main() { int n; cin>>n; cout…… 题解列表 2023年01月08日 0 点赞 0 评论 421 浏览 评分:9.9
3013: 求小数的某一位 摘要:```cpp #include #include using namespace std; int main() { long double a,b,n; cin>>a>…… 题解列表 2023年01月08日 0 点赞 0 评论 494 浏览 评分:9.9
3014: 计算星期几 摘要:```cpp #include using namespace std; int main() { int a,b,mod=7,z=1; string str[7]={"S…… 题解列表 2023年01月08日 0 点赞 0 评论 549 浏览 评分:9.9
3015: 幂的末尾 摘要:```cpp #include #include using namespace std; int main() { long long n,x,k; cin>>n>>x…… 题解列表 2023年01月08日 0 点赞 0 评论 665 浏览 评分:9.9
3016: 第几项 摘要:```cpp #include using namespace std; int main() { int i,m,n=0; cin>>m; for(i=1;n…… 题解列表 2023年01月08日 0 点赞 0 评论 424 浏览 评分:9.9
3017: 最小n值 摘要:```cpp #include using namespace std; int main() { double sum=0; int n=1,m; cin>>m…… 题解列表 2023年01月08日 0 点赞 0 评论 543 浏览 评分:9.9
蓝桥杯算法提高VIP-文本加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i; char a[100]; get…… 题解列表 2023年01月08日 0 点赞 0 评论 348 浏览 评分:0.0
画矩形(但不一定是用@画=_=||) 摘要:解题思路: 用脚趾头想的,不信请看我的优质答案=_=||注意事项: 这题目很娘贼,他直接用@给你画了一个矩形,搞得你打印时直接就想着输出@,这里的思考两秒钟=_=参考代码:…… 题解列表 2023年01月08日 0 点赞 0 评论 697 浏览 评分:9.9
1149一行解(Python) 摘要:解题思路:筛选奇数,合并求和注意事项:均采用内置函数,提升运行效率注意fliter函数在Python2和Python3返回值类型的差异学会匿名函数的表达方式参考代码:print(sum(list(fi…… 题解列表 2023年01月08日 0 点赞 1 评论 491 浏览 评分:9.9