2059——————sort练习 摘要: n,m = map(int,input().split()) s = sorted(list(map(int,input().split())))[::-1] for i …… 题解列表 2022年07月17日 0 点赞 0 评论 449 浏览 评分:0.0
自定义函数之字符提取((C语言) 摘要: #include void aa(char a[25]); int main() { char a[25]; …… 题解列表 2022年07月17日 0 点赞 0 评论 553 浏览 评分:0.0
模拟计算器(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, m; char u; scanf("%d %d %c", &n, &m, &u)…… 题解列表 2022年07月17日 0 点赞 0 评论 467 浏览 评分:0.0
自定义函数之数字分离(C语言简单数组) 摘要: #include void aa (int x); int main() { int x; scanf("%…… 题解列表 2022年07月17日 0 点赞 0 评论 409 浏览 评分:0.0
单词个数统计(C语言) 摘要://当前字符为字母且下个字符不是字母时单词数加一 #include int main() { char a[80]; gets(a); int k=0, len=s…… 题解列表 2022年07月17日 0 点赞 0 评论 325 浏览 评分:0.0
超好懂的求一元二次方程 摘要:解题思路:取三个函数来计算三种情况,再一个函数来判断b*b-4*a*b与0的关系进那种情况;注意事项:了解如何计算二元一次方程的根,过程很简单;参考代码:#include<stdio.h>#inclu…… 题解列表 2022年07月17日 0 点赞 0 评论 309 浏览 评分:0.0
编写题解 1089: A+B for Input-Output Practice (V) 摘要:解题思路:定义三个变量来保存数据注意事项:参考代码:#include<bits/stdc++.h>//c++万能头文件using namespace std;int main(){ int n; in…… 题解列表 2022年07月17日 0 点赞 0 评论 282 浏览 评分:0.0
简单1002: [编程入门]三个数最大值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>//万能头文件using namespace std;int main(){ int a,b,c; cin>>a>>b>>c…… 题解列表 2022年07月17日 0 点赞 0 评论 473 浏览 评分:0.0
其实就是一个人简单的循环 摘要:#include<bits/stdc++.h>using namespace std;int main(){ int n,a; cin>>n; for(int i=1;;i++) …… 题解列表 2022年07月17日 0 点赞 0 评论 315 浏览 评分:0.0
自定义函数之整数处理(C语言,简单数组) 摘要: #include void enter(int a[10]); void deal(int a[10]); void out(int a[10]);…… 题解列表 2022年07月17日 0 点赞 0 评论 350 浏览 评分:0.0