2888: 图像模糊处理 摘要:解题思路:一、需求分析1.n行m列的图像各像素点的灰度值解读:定义一个二维数组int[][] image用来存储初始的图像灰度值;定义两个全局变量分别表示图像的行列数;2.四周最外侧的像素点灰度值不变…… 题解列表 2023年06月30日 0 点赞 0 评论 545 浏览 评分:0.0
最小绝对值 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] arg…… 题解列表 2023年06月30日 0 点赞 0 评论 303 浏览 评分:0.0
蓝桥杯算法训练VIP-集合运算 摘要:解题思路:一步一步理清思路即可,注意的是去重时判断条件用常量注意事项:参考代码:import java.util.ArrayList;import java.util.Arrays;import ja…… 题解列表 2023年06月29日 0 点赞 0 评论 367 浏览 评分:0.0
1032题 : 自定义函数之字符串连接 摘要:# 自己写的代码 ```c #include #include int main() { char a[20]; char b[20]; gets(a); gets(b)…… 题解列表 2023年06月29日 0 点赞 0 评论 296 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct student{ char name[21]; char sex[21];…… 题解列表 2023年06月29日 0 点赞 0 评论 294 浏览 评分:0.0
1031题: 自定义函数之字符串反转 摘要:# 自己写的代码 ```c #include #include int main() { char a[20]; gets(a); int len=0; len=strl…… 题解列表 2023年06月29日 0 点赞 0 评论 389 浏览 评分:0.0
和为给定数--二分 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int a[100001];int main(){ in…… 题解列表 2023年06月29日 0 点赞 0 评论 359 浏览 评分:0.0
猴子吃桃的问题 摘要:#include <stdio.h> int main(){ int T,N,i,sum=1; scanf("%d",&N); for(i=1;i<N;i++){ sum=(sum…… 题解列表 2023年06月29日 0 点赞 0 评论 247 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float k,p,profit,money=0.0,sum_profit=0.0; int n; …… 题解列表 2023年06月29日 0 点赞 0 评论 336 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char str[101]; gets(str); str[strlen(str)] = &#…… 题解列表 2023年06月29日 0 点赞 0 评论 294 浏览 评分:0.0