C语言训练-素数问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int is_primes(int n){ for (int j = 2; j < n; j++) { if…… 题解列表 2023年05月19日 0 点赞 0 评论 699 浏览 评分:0.0
题解 1008: [编程入门]成绩评定 摘要:代码 ```cpp #include using namespace std; int main() { int n; scanf("%d",&n); if(n>=90) { p…… 题解列表 2023年05月19日 0 点赞 0 评论 667 浏览 评分:9.9
编写题解 2879: 错误探测 摘要:解题思路:检查每行每列是否满足条件 ,并记录不符合条件的行和列注意事项:参考代码:import java.util.Scanner;public class Main { public stat…… 题解列表 2023年05月19日 0 点赞 1 评论 361 浏览 评分:0.0
扫雷游戏地雷数计算 摘要:解题思路:把*号周围的数字都++注意事项:参考代码:#include<iostream>using namespace std;int main(){ //把*号周边的数++ int n,m; ch…… 题解列表 2023年05月19日 1 点赞 0 评论 525 浏览 评分:4.0
编写题解 2880: 计算鞍点 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年05月19日 1 点赞 0 评论 410 浏览 评分:0.0
编写题解 1687: 数据结构-字符串连接 摘要:解题思路:注意事项:参考代码:for x in range(3): a = input().split() if len(a[0]+a[1])>100: print("Res…… 题解列表 2023年05月19日 0 点赞 0 评论 346 浏览 评分:0.0
编写题解 1461: 蓝桥杯基础练习VIP-FJ的字符串 摘要:解题思路:注意事项:参考代码:第一个代码用到了asc2那个玩应,我也记不清叫什么n = int(input())#输入值s = "A"#定义s=‘a’for i in range(2, n + 1):…… 题解列表 2023年05月19日 0 点赞 0 评论 293 浏览 评分:0.0
图像模糊处理 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { Scanner sc = n…… 题解列表 2023年05月19日 0 点赞 0 评论 417 浏览 评分:0.0
2894:肿瘤检测 摘要:解题思路:注意事项:要考虑数组边界的数参考代码:#include<iostream>using namespace std;int main() { int m, n; int i, j, k = 0…… 题解列表 2023年05月19日 0 点赞 0 评论 324 浏览 评分:7.8
扫雷游戏地雷数计算 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { Scanner sc = n…… 题解列表 2023年05月19日 0 点赞 0 评论 461 浏览 评分:2.0