编写题解 2780: 奇偶数判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a%2==0) { p…… 题解列表 2023年03月24日 0 点赞 0 评论 404 浏览 评分:0.0
编写题解 2781: 奇偶ASCII值判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a; scanf("%c",&a); if(a%2==0){ prin…… 题解列表 2023年03月24日 0 点赞 0 评论 430 浏览 评分:8.0
编写题解 2782: 整数大小比较 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); if(a>b){ …… 题解列表 2023年03月24日 0 点赞 0 评论 363 浏览 评分:0.0
最小公约数--核桃的数量 摘要:a,b,c=map(int,input().split()) s=[] sum=a*b*c for i in range(1,sum+1): if i%a==0 and i%b==0 …… 题解列表 2023年03月24日 0 点赞 0 评论 483 浏览 评分:0.0
2902: 输出最高分数的学生姓名 摘要:```cpp #include using namespace std; struct xingming{//结构体,来储存分数和姓名 int k; string l; }…… 题解列表 2023年03月24日 0 点赞 0 评论 536 浏览 评分:9.9
1275: 吹哨传球 摘要:```cpp #include using namespace std; int main() { int n,m; int F[31][31]; scanf(…… 题解列表 2023年03月24日 0 点赞 0 评论 488 浏览 评分:6.0
LikeWater - 2701: 蓝桥杯真题-取模(请问有谁知道看错题的痛!一直看成n mod x == m mod y 隔这儿一只写。。。) 摘要:####这是题目:给定 n, m ,问是否存在两个不同的数 x, y 使得 1 ≤ x < y ≤ m 且 n mod x = n mod y 。 ***最后的地方我看成了n mod x = m m…… 题解列表 2023年03月24日 0 点赞 0 评论 813 浏览 评分:6.0
1492: 蓝桥杯算法提高VIP-产生数 摘要:```cpp #include #include using namespace std; int tag[10][10],d[10],p[1000]; int main() { …… 题解列表 2023年03月24日 0 点赞 0 评论 561 浏览 评分:6.0
三目运算符 摘要:解题思路:简单三目运算符注意事项:参考代码:#include<stdio.h> int main() { int n; char *e[1]; scanf…… 题解列表 2023年03月24日 0 点赞 0 评论 487 浏览 评分:9.9