自动晾衣机 (Java代码)模拟 摘要:解题思路: 数组模拟就行 注意事项: 题目的n和环形根本没限制好……,AC只需数组开完就行参考代码:import java.util.Scanner; /** …… 题解列表 2021年02月18日 0 点赞 0 评论 709 浏览 评分:6.0
[编程入门]成绩评定-题解(C++代码) 摘要:解题思路:用if,else注意事项:else后面不加条件参考代码:#include<iostream>using namespace std;int main(){ int score; …… 题解列表 2021年02月18日 0 点赞 0 评论 697 浏览 评分:6.0
[编程入门]三个数最大值-题解(C++代码) 摘要:解题思路:用if,else注意事项:else后面不加条件参考代码:#include<iostream>using namespace std;int main(){ int a,b; c…… 题解列表 2021年02月18日 0 点赞 1 评论 439 浏览 评分:6.0
[编程入门]分段函数求值-题解(C++代码) 摘要:解题思路:用if,else注意事项:else后面不加条件参考代码:#include<iostream>using namespace std;int main(){ int x; cin …… 题解列表 2021年02月19日 0 点赞 1 评论 1111 浏览 评分:6.0
程序员的表白-题解(Python代码) 摘要:解题思路:'*' + n' ' +'*' (n行)(n+2)'*' (最后一行)注意事项:for i in range(n): 循环参…… 题解列表 2021年02月19日 0 点赞 0 评论 797 浏览 评分:6.0
蓝桥杯算法提高VIP-不同单词个数统计(Java代码) 13行!!! 摘要:解题思路:注意事项:参考代码:import java.util.HashSet; import java.util.Scanner; import java.util.Set; public c…… 题解列表 2021年02月20日 0 点赞 0 评论 747 浏览 评分:6.0
信息学奥赛一本通T1239-统计数字-题解(C语言代码) 摘要: #include #include typedef struct { int *data; int len; }…… 题解列表 2021年02月21日 0 点赞 0 评论 977 浏览 评分:6.0
素数筛法(虽然这个题仿佛没必要 摘要:解题思路:用了十分不简洁的素数筛法……大意是先预处理算出所有范围内的素数再遍历注意事项:参考代码:#include<iostream>using namespace std;int a[16339]=…… 题解列表 2021年02月24日 0 点赞 0 评论 482 浏览 评分:6.0
弟弟的作业 C语言 摘要:```c int main() { char b; int a,c,d,k; int sum=0; while(~(k=scanf("%d%c%d=%d",&a,&b,&c,&…… 题解列表 2021年02月25日 0 点赞 0 评论 689 浏览 评分:6.0
编程入门]打印图案 c语言 摘要:解题思路:没啥思路有手就行。注意事项:注意下面是五个米。参考代码:#include<stdio.h>void main(){ printf(" *\n"); printf(" * *\n"); pr…… 题解列表 2021年03月01日 0 点赞 1 评论 349 浏览 评分:6.0