自定义函数之字符提取 摘要:#include #include void aa(); void main() { aa(); } void aa() { char a[100],b[1…… 题解列表 2022年05月10日 0 点赞 0 评论 330 浏览 评分:0.0
1196: 去掉空格 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){ while(getline(…… 题解列表 2022年05月10日 0 点赞 0 评论 293 浏览 评分: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 评论 335 浏览 评分:0.0
C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){ getline(cin…… 题解列表 2022年05月10日 0 点赞 0 评论 280 浏览 评分:0.0
暴搜时间超限,这题需要dp(完全为了做笔记,不用看我的,思路都是看前面几位的) 摘要:完全为了做笔记!!!完全为了做笔记!!!完全为了做笔记!!!我也是新手,全部都是理解前面几个大佬的思路和代码1:暴力DFS解题思路: 就是在每次递归中循环可能的情况,当当前值加上i大于目标值就退…… 题解列表 2022年05月10日 0 点赞 0 评论 470 浏览 评分:9.9
C语言训练-大、小写问题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int main(){ getline(cin,s); fo…… 题解列表 2022年05月10日 0 点赞 0 评论 312 浏览 评分:0.0
[编程入门]自定义函数求一元二次方程 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;float delta_func(float a,float b,float c){…… 题解列表 2022年05月10日 0 点赞 0 评论 301 浏览 评分:0.0
[编程入门]自定义函数之数字后移 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int N,temp,swapnum; vect…… 题解列表 2022年05月10日 0 点赞 0 评论 318 浏览 评分:0.0
C语言,递归 摘要:解题思路:C语言,递归注意事项:参考代码:#include <stdio.h>#define n 30double fun(int i){ if(i==1){ return 1; } else{ …… 题解列表 2022年05月10日 0 点赞 0 评论 294 浏览 评分:0.0
水了一道题 摘要:解题思路:准备去上课了。。注意事项:ye有人不明白宏是什么了,看来自己是进错区域了,所以才会觉得这么简单,投机取巧了,但是对我提高信心很有帮助啊哈哈哈希望有,宏记得在office,Excel里面有听过…… 题解列表 2022年05月10日 0 点赞 0 评论 342 浏览 评分:0.0