2908: 白细胞计数 摘要:``` #include using namespace std; const int N=310; double a[N]; int main() { int n; cin>>n;…… 题解列表 2023年12月24日 0 点赞 0 评论 176 浏览 评分:0.0
1754: 字符串排序 摘要: #include using namespace std; const int N=100010; string a[N]; bool cmp(stri…… 题解列表 2023年12月24日 0 点赞 0 评论 357 浏览 评分:0.0
求一个3×3矩阵对角线元素之和。 输入格式 矩阵 输出格式 主对角线 副对角线 元素和 摘要:解题思路: 找到主对角线 辅对角线 上二维数组下标的关系注意事项:仅供参考 不懂的问参考代码:#include <stdio.h>int main(){ int i,j; int arr…… 题解列表 2023年12月25日 0 点赞 0 评论 142 浏览 评分:0.0
2693: 蓝桥杯2022年第十三届决赛真题-卡牌 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ long long int n,m; int*p,*q; …… 题解列表 2023年12月25日 0 点赞 0 评论 523 浏览 评分:0.0
Java基本语法 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;class Main { public static void main(String[] args) { …… 题解列表 2023年12月25日 0 点赞 0 评论 155 浏览 评分:0.0
题解 2880: 计算鞍点 摘要: #include using namespace std; const int N=100; int a[N][N],b[N],c[N],zd1,zd2,d,z=…… 题解列表 2023年12月25日 0 点赞 0 评论 125 浏览 评分:0.0
2880: 计算鞍点 摘要:``` #include using namespace std; const int N=10010; int a[6][6]; int main() { int n=5; for…… 题解列表 2023年12月25日 0 点赞 0 评论 136 浏览 评分:0.0
题解 2787: 有一门课不及格的学生 摘要:解题思路:注意事项:参考代码: #include<stdio.h> int main() 题解列表 2023年12月25日 0 点赞 0 评论 88 浏览 评分:0.0
2098: 两数之和 摘要:```python n ,k = map(int,input().split()) ans =0 def twosum(numbers,target): global ans …… 题解列表 2023年12月25日 0 点赞 0 评论 164 浏览 评分:0.0
数列求和Java(含注释) 摘要:解题思路:注意事项:参考代码:package dotcpp; import java.util.Scanner; //一分数序列: 2/1 3/2 5/3 8/5 13/8 21/13..…… 题解列表 2023年12月25日 0 点赞 0 评论 112 浏览 评分:0.0