编写题解 2888: 图像模糊处理 摘要:解题思路:注意事项:注意那个经过图像模糊处理之后的图像B参考代码:import java.util.Scanner;public class Main { public static void …… 题解列表 2023年06月25日 0 点赞 0 评论 330 浏览 评分:0.0
1068-温度转换 摘要:解题思路:注意事项:这道题目不严谨参考代码:int ctof(int c){ int f; f = 32+c*9/5; return f; } int main(){ …… 题解列表 2023年06月26日 0 点赞 0 评论 264 浏览 评分:0.0
C++ :蓝桥杯算法提高VIP-淘淘的名单 摘要:# C++ `string` || 选择结构 ```c++ #include #include #include #include #include #include #i…… 题解列表 2023年06月26日 0 点赞 0 评论 368 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, height[30],i,max_height; scanf("%d", &n); …… 题解列表 2023年06月26日 0 点赞 0 评论 280 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int c, n, i; scanf("%d", &c); while (c--) { …… 题解列表 2023年06月26日 0 点赞 0 评论 248 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int least_num(int a,int b){ return a%b==0 ? b : least_num(b, a % …… 题解列表 2023年06月26日 0 点赞 0 评论 568 浏览 评分:0.0
阶乘数列1064 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String args[]) { double sum = 0…… 题解列表 2023年06月26日 0 点赞 0 评论 356 浏览 评分:0.0
1074:-数字整除 摘要:解题思路:本题的本质是高精度大数除以低精度小数。字符型的的本质就是整形数据。以字符串的形式接收高精度大数,把每一个字符转变为数字存放在数组中进行运算。注意事项:参考代码:char a[1000]; …… 题解列表 2023年06月27日 0 点赞 0 评论 352 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[101],c; int i,max_sign=…… 题解列表 2023年06月27日 0 点赞 0 评论 275 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int min(int x, int y){ return x < y?x : y;}int main(){ int a, …… 题解列表 2023年06月27日 0 点赞 0 评论 193 浏览 评分:0.0