1083-hello world(ASCII码转化) 摘要:```c #define _CRT_SECURE_NO_WARNINGS #include int main() { char a[200] = { 0 }; int i = …… 题解列表 2024年02月04日 0 点赞 0 评论 293 浏览 评分:0.0
1084素数筛法 摘要:素数筛的主要是采用反向构造合数的方式,筛选出素数。 如何构造合数? 在大于1的数字中任取两个数a, b相乘得到C,此时C必为合数(因为c此时的因子必有:1,a, b, c。) 算法思路:…… 题解列表 2024年02月04日 0 点赞 0 评论 223 浏览 评分:0.0
编写题解 2884: 矩阵乘法 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2884: 矩阵乘法 import java.util.Scanner; public class t_2884 { …… 题解列表 2024年02月04日 0 点赞 0 评论 197 浏览 评分:0.0
[编程入门]链表合并 摘要: **核心思想是先将二者合并,再利用插入排序** ## 代码 #include #include typedef struct N…… 题解列表 2024年02月04日 0 点赞 0 评论 224 浏览 评分:0.0
图像旋转(Java) 摘要:解题思路:注意事项:参考代码:public static void main(String args[]) { Scanner sc=new Scanner(System.in); int…… 题解列表 2024年02月04日 0 点赞 0 评论 165 浏览 评分: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 评论 435 浏览 评分:0.0
编写题解 2790: 分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a; scanf("%f",&a); if(a>=0&&a<5) printf("%…… 题解列表 2024年02月04日 0 点赞 0 评论 218 浏览 评分: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 评论 261 浏览 评分:0.0
题目2768:与圆相关的计算 摘要:解题思路:硬解注意事项:请问为什么加上下面if就是83分,题目的范围这么表述有没有问题,或者怎么改,求大佬解答参考代码:#include<stdio.h>int main(){ double r…… 题解列表 2024年02月04日 1 点赞 2 评论 522 浏览 评分:0.0
图像模糊处理(java) 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2888: 图像模糊处理 import java.util.Scanner; public class t_2888 {…… 题解列表 2024年02月04日 0 点赞 0 评论 252 浏览 评分:0.0