【偶数求和】-题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; int main() { int n, m; int arr[100]; whi…… 题解列表 2019年10月16日 0 点赞 0 评论 1029 浏览 评分:9.9
[编程入门]自定义函数之数字分离-题解(C语言代码)--不知道错在哪 摘要:**我自己编译是正确的但是提交报错**  ```c #include int main()…… 题解列表 2019年10月16日 0 点赞 0 评论 751 浏览 评分:0.0
求长方形面积-题解(C++代码) 摘要:简单题1952:求长方形的面积和周长 输出格式 s: c: s=A*B; c=(A+B)*2; 代码如下: #include using …… 题解列表 2019年10月16日 0 点赞 0 评论 1456 浏览 评分:3.3
The 3n + 1 problem -题解(C语言代码) 摘要:#### 1095: The 3n + 1 problem [原题连接:The 3n +1 problem](https://www.dotcpp.com/oj/problem1000.html "…… 题解列表 2019年10月16日 0 点赞 8 评论 1151 浏览 评分:9.3
The 3n + 1 problem -题解(C语言代码) 摘要:#### 1095: The 3n + 1 problem [原题连接:The 3n +1 problem](https://www.dotcpp.com/oj/problem1000.html "…… 题解列表 2019年10月16日 0 点赞 0 评论 429 浏览 评分:0.0
台球碰撞-题解(C语言代码) 直接取余 摘要:把圆的运动看成圆心的运动,忽略半径,计算总路程然后直接取余得位置。 参考代码: ```c #include #include const double k = 3.14159265358…… 题解列表 2019年10月16日 0 点赞 0 评论 1029 浏览 评分:9.9
[编程入门]数组插入处理-题解(C语言代码) 能力提升,不局限于题目,而是为了更好的自己!!!!! 摘要: #include #include int main() { int a[50]; char ch; int t = 0, s = 0, i = 0, j, x; …… 题解列表 2019年10月16日 0 点赞 6 评论 468 浏览 评分:8.4
[编程入门]迭代法求平方根-题解(C语言代码) 摘要:# Nowton iterator function ## Software: C/C++$ ## Hardware: Ipad ``` #include #include i…… 题解列表 2019年10月15日 0 点赞 2 评论 1441 浏览 评分:9.3
[编程入门]水仙花数判断-题解(C语言代码) 摘要:##### 解题思路: 据题可得 ,它所要求的是在100到999之间选出满足 “水仙花数” 这一条件的数 ,因为水仙花数具有相同的特征 ,我想到了要建立一个满足 水仙花数 的一函数 ,然后让函数返回…… 题解列表 2019年10月15日 0 点赞 0 评论 932 浏览 评分:8.0
[编程入门]迭代法求平方根-题解(C语言代码) 摘要: **题目:求a的平方根的迭代公式为: X[n+1]=(X[n]+a/X[n])/2 要求前后两次求出的差的绝对值少于0.00001。 输出保留3位小数** ###### 一、何为迭代…… 题解列表 2019年10月15日 0 点赞 1 评论 990 浏览 评分:0.0