[编程入门]三个数找最大值-题解(Python代码) 摘要:a, b, c = map(int, input().split())if a > b and a > c: print(a)elif b > a and b > c: print(b)e…… 题解列表 2021年02月18日 0 点赞 0 评论 460 浏览 评分:6.0
鸡兔同笼-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int s; int x = 0, y = 0;// x 为鸡的数量 y 为兔的数量 scanf("%d", &…… 题解列表 2021年02月18日 0 点赞 0 评论 903 浏览 评分:6.0
自动晾衣机 (Java代码)模拟 摘要:解题思路: 数组模拟就行 注意事项: 题目的n和环形根本没限制好……,AC只需数组开完就行参考代码:import java.util.Scanner; /** …… 题解列表 2021年02月18日 0 点赞 0 评论 516 浏览 评分:6.0
[编程入门]成绩评定-题解(C++代码) 摘要:解题思路:用if,else注意事项:else后面不加条件参考代码:#include<iostream>using namespace std;int main(){ int score; …… 题解列表 2021年02月18日 0 点赞 0 评论 544 浏览 评分:6.0
[编程入门]三个数最大值-题解(C++代码) 摘要:解题思路:用if,else注意事项:else后面不加条件参考代码:#include<iostream>using namespace std;int main(){ int a,b; c…… 题解列表 2021年02月18日 0 点赞 1 评论 290 浏览 评分:6.0
[编程入门]分段函数求值-题解(C++代码) 摘要:解题思路:用if,else注意事项:else后面不加条件参考代码:#include<iostream>using namespace std;int main(){ int x; cin …… 题解列表 2021年02月19日 0 点赞 1 评论 955 浏览 评分:6.0
程序员的表白-题解(Python代码) 摘要:解题思路:'*' + n' ' +'*' (n行)(n+2)'*' (最后一行)注意事项:for i in range(n): 循环参…… 题解列表 2021年02月19日 0 点赞 0 评论 607 浏览 评分:6.0
蓝桥杯算法提高VIP-不同单词个数统计(Java代码) 13行!!! 摘要:解题思路:注意事项:参考代码:import java.util.HashSet; import java.util.Scanner; import java.util.Set; public c…… 题解列表 2021年02月20日 0 点赞 0 评论 527 浏览 评分:6.0
信息学奥赛一本通T1239-统计数字-题解(C语言代码) 摘要: #include #include typedef struct { int *data; int len; }…… 题解列表 2021年02月21日 0 点赞 0 评论 774 浏览 评分:6.0
素数筛法(虽然这个题仿佛没必要 摘要:解题思路:用了十分不简洁的素数筛法……大意是先预处理算出所有范围内的素数再遍历注意事项:参考代码:#include<iostream>using namespace std;int a[16339]=…… 题解列表 2021年02月24日 0 点赞 0 评论 328 浏览 评分:6.0