2784普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; scanf("%d%d",&n,&m); if (n >=10 || m>=20) prin…… 题解列表 2024年11月23日 0 点赞 0 评论 221 浏览 评分:0.0
2785普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); if (n%3 == 0 && n%5== 0) printf(…… 题解列表 2024年11月23日 0 点赞 0 评论 243 浏览 评分:0.0
2786普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); if (n%3 == 0 && n%5== 0 && n%7 =…… 题解列表 2024年11月23日 0 点赞 0 评论 284 浏览 评分:0.0
均分纸牌,唉,反正也没人看 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义一个大小为10005的整数数组a int a[10005]; …… 题解列表 2024年11月23日 0 点赞 0 评论 165 浏览 评分:0.0
2787普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a; scanf("%d%d",&n,&a); if (n<60 && a<60) printf(…… 题解列表 2024年11月23日 0 点赞 0 评论 196 浏览 评分:0.0
2788普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a; scanf("%d",&n); if (n == 1 || n == 3 || n == 5…… 题解列表 2024年11月23日 0 点赞 0 评论 144 浏览 评分:0.0
2790-普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float x,y; scanf("%f",&x); if ( 0 <= x && x < 5) y=-x+2…… 题解列表 2024年11月23日 0 点赞 0 评论 238 浏览 评分:0.0
2792-普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); if ( a + b > c && …… 题解列表 2024年11月23日 0 点赞 0 评论 251 浏览 评分:0.0
结构体链表,超清晰思路 #1676: 数据结构-链表的基本操作(C++) 摘要:**数据量很大时要使用C语言的输入输出,这道题如果用cin,cout很可能超时** ``` #include #include typedef struct lNode { int d…… 题解列表 2024年11月23日 2 点赞 0 评论 272 浏览 评分:0.0
2950: 素数回文数的个数 摘要:```c #include using namespace std; const int maxn=2000010; int prime[maxn]; void judge_prime(in…… 题解列表 2024年11月23日 0 点赞 0 评论 182 浏览 评分:0.0