图像相似度(JAVA) 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2881: 图像相似度 import java.util.Scanner; public class t_2881 { …… 题解列表 2024年02月03日 0 点赞 0 评论 111 浏览 评分:0.0
两个嵌套for循环解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, b, sum; scanf("%d",&n); sum = 0; for …… 题解列表 2024年02月03日 0 点赞 0 评论 108 浏览 评分:0.0
1083-hello world(ASCII码转化) 摘要:```c #define _CRT_SECURE_NO_WARNINGS #include int main() { char a[200] = { 0 }; int i = …… 题解列表 2024年02月04日 0 点赞 0 评论 176 浏览 评分:0.0
1084素数筛法 摘要:素数筛的主要是采用反向构造合数的方式,筛选出素数。 如何构造合数? 在大于1的数字中任取两个数a, b相乘得到C,此时C必为合数(因为c此时的因子必有:1,a, b, c。) 算法思路:…… 题解列表 2024年02月04日 0 点赞 0 评论 132 浏览 评分:0.0
编写题解 2884: 矩阵乘法 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2884: 矩阵乘法 import java.util.Scanner; public class t_2884 { …… 题解列表 2024年02月04日 0 点赞 0 评论 125 浏览 评分:0.0
[编程入门]链表合并 摘要: **核心思想是先将二者合并,再利用插入排序** ## 代码 #include #include typedef struct N…… 题解列表 2024年02月04日 0 点赞 0 评论 147 浏览 评分:0.0
图像旋转(Java) 摘要:解题思路:注意事项:参考代码:public static void main(String args[]) { Scanner sc=new Scanner(System.in); int…… 题解列表 2024年02月04日 0 点赞 0 评论 105 浏览 评分: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 评论 326 浏览 评分:0.0
编写题解 2790: 分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a; scanf("%f",&a); if(a>=0&&a<5) printf("%…… 题解列表 2024年02月04日 0 点赞 0 评论 142 浏览 评分: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 评论 162 浏览 评分:0.0