整数序列的元素最大跨度值 C++ 摘要:解题思路:注意事项:参考代码:#include<iomanip>#include<string>#include<iostream>#include<algorithm>#include<cmath>…… 题解列表 2022年12月08日 0 点赞 0 评论 490 浏览 评分:0.0
我是硬解的废物Two 摘要:解题思路:暴力注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ int N; cin>>N; st…… 题解列表 2022年12月08日 0 点赞 0 评论 423 浏览 评分:0.0
成绩排序 ( 重写Sort()方法 ) 摘要:import java.util.Arrays; import java.util.Comparator; import java.util.Scanner; class Stu{ …… 题解列表 2022年12月08日 0 点赞 0 评论 579 浏览 评分:0.0
1159: 偶数求和 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,m,c,i; int sum,count,num; int a…… 题解列表 2022年12月08日 0 点赞 0 评论 357 浏览 评分:0.0
1039: [编程入门]宏定义之闰年判断 摘要:解题思路:注意事项:参考代码:1.使用函数def LEAP_YEAR(y): if y % 400 == 0 or (y % 4 == 0 and y % 100 != 0): p…… 题解列表 2022年12月08日 0 点赞 0 评论 562 浏览 评分:0.0
1070: 二级C语言-成绩归类 摘要:解题思路: 使用逗号表达式作为退出条件的判断注意事项:参考代码:#include<stdio.h>#define N 1010int arr[N];int main(){ int i = 0; int…… 题解列表 2022年12月09日 0 点赞 0 评论 404 浏览 评分:0.0
realloc动态分配内存 摘要:解题思路:注意事项:参考代码:#include<stdio.h>/*72 101 108 108 111 44 32 119 111 114 108 100  题解列表 2022年12月09日 0 点赞 0 评论 381 浏览 评分:0.0
定义动态二维数组 摘要:解题思路:遍历找到最小值注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int n;int min,a,b; while(…… 题解列表 2022年12月10日 0 点赞 0 评论 333 浏览 评分:0.0
1027.自定义函数处理最大公约数与最小公倍数题解简洁容易 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int gcd(int m,int n){ if(m%n==0) return n; else return gcd(n,m%n);}…… 题解列表 2022年12月10日 0 点赞 0 评论 392 浏览 评分:0.0
1029题解简单易懂 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int fun(int m){ int y; y=(int)sqrt(m); for(int i=2…… 题解列表 2022年12月10日 0 点赞 0 评论 371 浏览 评分:0.0