[编程入门]自定义函数之数字后移-题解(C++代码) 摘要:```cpp #include using namespace std; void k(int *a,int m,int n,int *p){ int j=n-m; i…… 题解列表 2020年04月06日 0 点赞 0 评论 785 浏览 评分:0.0
C语言训练-委派任务*-题解(C语言代码) 摘要: //0代表没有去,1代表去了 #include void main() { int A,B,C,D,E,F; int i,j,k,l,m,…… 题解列表 2020年04月06日 0 点赞 0 评论 740 浏览 评分:6.0
[编程入门]自定义函数之整数处理-题解(C++代码) 摘要:```cpp #include using namespace std; void cin_p(int *p){ for(int i=0;i>p[i]; } } voi…… 题解列表 2020年04月06日 0 点赞 0 评论 853 浏览 评分:0.0
[编程入门]三个字符串的排序-题解(C++代码) 摘要:```cpp #include #include using namespace std; bool cmp(string a,string b){ return a.compa…… 题解列表 2020年04月06日 0 点赞 0 评论 783 浏览 评分:0.0
[编程入门]自定义函数之字符类型统计-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ char a1[100]; cin.getline(…… 题解列表 2020年04月06日 0 点赞 0 评论 917 浏览 评分:0.0
[竞赛入门]简单的a+b-题解(C++代码) 摘要:傻瓜无脑操作 ``` #include using namespace std; int main(void) { int a,b,c; cin>>a>>b>>c; if(a>b)…… 题解列表 2020年04月06日 0 点赞 0 评论 747 浏览 评分:8.0
蓝桥杯2013年第四届真题-核桃的数量-题解(C++代码) 摘要:#### 思路:先求出两个大数的最小公倍数 再求出三个数的最小公倍数 #### 我的代码: ``` #include using namespace std; int gcd(int a,…… 题解列表 2020年04月06日 0 点赞 0 评论 584 浏览 评分:0.0
二级C语言-温度转换-题解(C++代码)(一看就懂,哈哈哈) 摘要:原题链接:[温度转换](https://www.dotcpp.com/oj/problem1056.html "温度转换") 解题思路: 1.首先定义两个浮点数C,F。(字母可以是任意的,…… 题解列表 2020年04月06日 0 点赞 0 评论 2371 浏览 评分:9.9
蓝桥杯2013年第四届真题-带分数-题解(C++代码) 摘要:#### 思路:用全排列求解 #### 参考代码: ``` #include using namespace std; int a[15],c=0; void judge(int n) …… 题解列表 2020年04月06日 0 点赞 0 评论 832 浏览 评分:0.0
二级C语言-分段函数 (C++代码)(希望对你有所帮助) 摘要:()原题链接:[分段函数](http://https://www.dotcpp.com/oj/problem1057.html "分段函数") 解题思路: 1,定义两个浮点数x,y。(考虑…… 题解列表 2020年04月06日 0 点赞 1 评论 1072 浏览 评分:9.9