2820: 含k个3的数 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { long int m,n; int s…… 题解列表 2023年12月26日 0 点赞 0 评论 233 浏览 评分:0.0
2822: 求分数序列和 摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std; double molecule(int n) { if(n==1) …… 题解列表 2023年12月26日 0 点赞 0 评论 332 浏览 评分:0.0
合法C标识符 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;class Main { public static void main(String[] args) { …… 题解列表 2023年12月26日 0 点赞 0 评论 137 浏览 评分:0.0
我的很简洁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int max = -0x7fffffff; // 初始化最大值为负无穷 int num; …… 题解列表 2023年12月26日 0 点赞 0 评论 123 浏览 评分:0.0
2864: 单词替换 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;class Main { public static void main(String[] args) { …… 题解列表 2023年12月26日 0 点赞 0 评论 185 浏览 评分:0.0
海绵宝宝来学C~题解 1043: [编程入门]三个数字的排序 摘要:#####解题思路: 假设题目的是理想状态,输入的正整数都是不重复的 我们用简单的if-else函数判断就可以把3个数分别区别大小和排序了 #####if-else参考代码: ```c …… 题解列表 2023年12月26日 0 点赞 0 评论 190 浏览 评分:0.0
组合的输出(python) 摘要:解题思路:注意事项:参考代码:def combine(n, k): def backtrack(combination, start, n, k, res): if k == 0:…… 题解列表 2023年12月26日 0 点赞 0 评论 257 浏览 评分:0.0
题解 2881: 图像相似度 摘要: #include using namespace std; const int N=100; int a[N][N],b[N][N],n,m; doub…… 题解列表 2023年12月26日 0 点赞 0 评论 146 浏览 评分:0.0
题解 2886: 图像旋转 摘要: #include using namespace std; const int N=100; int a[N][N],b[N][N],n,m,c,z,maxx;…… 题解列表 2023年12月26日 0 点赞 0 评论 146 浏览 评分:0.0
仅供自己学习参考 摘要:```c #include #include #define MAX_INT ~((unsigned int)0)>>1;//输出int型可以表示的最大值 int a[100][100],…… 题解列表 2023年12月26日 0 点赞 0 评论 327 浏览 评分:0.0