编写题解 1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; typedef long long ll; const int N=50; i…… 题解列表 2024年05月12日 0 点赞 0 评论 130 浏览 评分:0.0
编写题解 2878: 计算矩阵边缘元素之 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e3;ll a[…… 题解列表 2024年05月12日 0 点赞 0 评论 160 浏览 评分:0.0
解 2878: 计算矩阵边缘元素之和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=100;int …… 题解列表 2024年05月12日 0 点赞 0 评论 198 浏览 评分:0.0
2883: 矩阵加法 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e3;ll a[…… 题解列表 2024年05月12日 0 点赞 0 评论 140 浏览 评分:0.0
题解 2883: 矩阵加法 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=100;int …… 题解列表 2024年05月12日 0 点赞 0 评论 133 浏览 评分:0.0
编写题解 2883: 矩阵加 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=101;ll a[…… 题解列表 2024年05月12日 0 点赞 0 评论 122 浏览 评分:0.0
编写题解 2809: 菲波那契数列 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int a[1000],k;cin>>k;a[0]=1;a[1…… 题解列表 2024年05月12日 0 点赞 0 评论 199 浏览 评分:0.0
不用结构体我照样写!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int number = 0;int i = 0;int year = 0;int month = 0;int day = 0;//这…… 题解列表 2024年05月12日 0 点赞 0 评论 133 浏览 评分:0.0
二级C语言-阶乘数列 摘要:解题思路:数据类型 double注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { …… 题解列表 2024年05月13日 1 点赞 0 评论 218 浏览 评分:0.0
无敌简单求大整数减法 摘要:解题思路:输入字符串逆序转化为数字后存放在数组中,数组先相减后判断,小于0加10,前一位减1.逆序输出注意事项:要先计算后判断,容易被覆盖参考代码:#include<iostream>#include…… 题解列表 2024年05月13日 0 点赞 0 评论 262 浏览 评分:0.0