编写题解 2884: 矩阵乘法 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2884: 矩阵乘法 import java.util.Scanner; public class t_2884 { …… 题解列表 2024年02月04日 0 点赞 0 评论 161 浏览 评分:0.0
[编程入门]链表合并 摘要: **核心思想是先将二者合并,再利用插入排序** ## 代码 #include #include typedef struct N…… 题解列表 2024年02月04日 0 点赞 0 评论 181 浏览 评分:0.0
图像旋转(Java) 摘要:解题思路:注意事项:参考代码:public static void main(String args[]) { Scanner sc=new Scanner(System.in); int…… 题解列表 2024年02月04日 0 点赞 0 评论 137 浏览 评分:0.0
编写题解 2789: 骑车与走路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if((a/3.0+27+23)<(a/1.2)…… 题解列表 2024年02月04日 0 点赞 0 评论 376 浏览 评分:0.0
编写题解 2790: 分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a; scanf("%f",&a); if(a>=0&&a<5) printf("%…… 题解列表 2024年02月04日 0 点赞 0 评论 182 浏览 评分:0.0
大整数加法(C++) 摘要://大整数加法#include <bits/stdc++.h>using namespace std;int na[1005], nb[1005];string add(string a, strin…… 题解列表 2024年02月04日 0 点赞 0 评论 205 浏览 评分:0.0
题目2768:与圆相关的计算 摘要:解题思路:硬解注意事项:请问为什么加上下面if就是83分,题目的范围这么表述有没有问题,或者怎么改,求大佬解答参考代码:#include<stdio.h>int main(){ double r…… 题解列表 2024年02月04日 0 点赞 2 评论 381 浏览 评分:0.0
图像模糊处理(java) 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2888: 图像模糊处理 import java.util.Scanner; public class t_2888 {…… 题解列表 2024年02月04日 0 点赞 0 评论 193 浏览 评分:0.0
跟上题解决思路一致,两个嵌套for循环解法 摘要:解题思路:这里主要先分析阶乘求和,主要有两个步骤:第一个步骤是从n递减相乘,再将n-1重新循环再递减相乘,直到n=1;这部分代码如下: for (a = n; a >= 1; a--) { …… 题解列表 2024年02月04日 0 点赞 0 评论 184 浏览 评分:0.0
三个for循环秒杀 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a,b,c,d,e,f,an,bn,cn,sn; an=bn=cn=sn=0; scanf("…… 题解列表 2024年02月04日 0 点赞 0 评论 143 浏览 评分:0.0