编写题解 1023: [编程入门]选择排序 摘要:解题思路:注意事项:参考代码:lst = list(map(int,input().split())) lst.sort() for i in lst: print(i)…… 题解列表 2022年05月10日 0 点赞 0 评论 377 浏览 评分:0.0
水了一道题 摘要:解题思路:准备去上课了。。注意事项:ye有人不明白宏是什么了,看来自己是进错区域了,所以才会觉得这么简单,投机取巧了,但是对我提高信心很有帮助啊哈哈哈希望有,宏记得在office,Excel里面有听过…… 题解列表 2022年05月10日 0 点赞 0 评论 377 浏览 评分:0.0
C语言,递归 摘要:解题思路:C语言,递归注意事项:参考代码:#include <stdio.h>#define n 30double fun(int i){ if(i==1){ return 1; } else{ …… 题解列表 2022年05月10日 0 点赞 0 评论 327 浏览 评分:0.0
[编程入门]自定义函数之数字后移 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int N,temp,swapnum; vect…… 题解列表 2022年05月10日 0 点赞 0 评论 344 浏览 评分:0.0
[编程入门]自定义函数求一元二次方程 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;float delta_func(float a,float b,float c){…… 题解列表 2022年05月10日 0 点赞 0 评论 326 浏览 评分:0.0
C语言训练-大、小写问题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int main(){ getline(cin,s); fo…… 题解列表 2022年05月10日 0 点赞 0 评论 332 浏览 评分:0.0
C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){ getline(cin…… 题解列表 2022年05月10日 0 点赞 0 评论 298 浏览 评分:0.0
二级C语言-计负均正 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,s;double t,t1;int main(){ for(…… 题解列表 2022年05月10日 0 点赞 0 评论 352 浏览 评分:0.0
1196: 去掉空格 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){ while(getline(…… 题解列表 2022年05月10日 0 点赞 0 评论 309 浏览 评分:0.0
自定义函数之字符提取 摘要:#include #include void aa(); void main() { aa(); } void aa() { char a[100],b[1…… 题解列表 2022年05月10日 0 点赞 0 评论 358 浏览 评分:0.0