python 2798: 整数序列的元素最大跨度值 摘要:参考代码:n = input() arr = list(map(int, input().split())) print(max(arr)-min(arr))…… 题解列表 2024年03月12日 0 点赞 0 评论 468 浏览 评分:0.0
1139: C语言训练-求素数问题 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; int i,j;//设置为全…… 题解列表 2024年03月12日 0 点赞 0 评论 383 浏览 评分:9.9
1133: C语言训练-求1+2!+3!+...+N!的和 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; long long s=0,t;//求阶层,…… 题解列表 2024年03月12日 1 点赞 0 评论 383 浏览 评分:9.9
1126: C语言训练-字符串正反连接 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ char ch1[100],c…… 题解列表 2024年03月12日 1 点赞 0 评论 354 浏览 评分:9.9
1124: C语言训练-大、小写问题 摘要:解题思路:注意事项:参考代码:傻逼题目限制得put,get才能通过#include<iostream>#include<cstring>using namespace std;int main(){ …… 题解列表 2024年03月12日 0 点赞 0 评论 353 浏览 评分:9.9
2750: 字符菱形 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2024年03月12日 1 点赞 0 评论 966 浏览 评分:9.9
114: C语言考试练习题_排列 摘要:解题思路:输出是有规律的,不是随便排序的。 先排序1,2,3再1,2,4再1,3,4再2,3,4. 我们会发现循环删去最后一 题解列表 2024年03月12日 1 点赞 0 评论 438 浏览 评分:7.0
java--study||O.o--。。。。 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年03月12日 0 点赞 0 评论 409 浏览 评分:9.7
1112: C语言考试练习题_一元二次方程 摘要:解题思路:就数学公式的基本应用注意事项:参考代码:#include<iostream>#include<cmath>#include<iomanip>using namespace std;int m…… 题解列表 2024年03月12日 1 点赞 0 评论 434 浏览 评分:9.9
蓝桥杯2014年第五届真题-分糖果-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int n,i,f,b=0;//b为补发糖果个数,f为判断每个人是否相等的标志 int stu[10…… 题解列表 2024年03月12日 0 点赞 0 评论 332 浏览 评分:0.0