文章列表
继续(3n+1)猜想 【PAT(5/95)】题解
摘要:[1005 继续(3n+1)猜想 (25 分)](https://pintia.cn/problem-sets/994805260223102976/problems/9948053203065077……
成绩排名【PAT(4/95)】题解
摘要:[1004 成绩排名 (20 分)](https://pintia.cn/problem-sets/994805260223102976/problems/994805321640296448 "10……
我要通过!【PAT(3/95)】题解
摘要:[1003 我要通过! (20 分)](https://pintia.cn/problem-sets/994805260223102976/problems/994805323154440192 "1……
写出这个数【PAT(2/95)】题解
摘要:[1002 写出这个数 (20 分)](https://pintia.cn/problem-sets/994805260223102976/problems/994805324509200384 "1……
害死人不偿命的(3n+1)猜想 【PAT(1/95)】题解
摘要:[1001 害死人不偿命的(3n+1)猜想 (15 分)](https://pintia.cn/problem-sets/994805260223102976/problems/99480532591……
二路归并,最简单的归并算法
摘要:```c
二路归并算法是其它归并算法的基础
#include
#define N 100
int main()
{ int i,j,k,m,n;
int a[N],b[N],c……
c语言实训项目-通讯录管理系统心得总结
摘要:**通讯录管理系统要求: **
**1.增加用户信息(至少姓名、电话、住址三项)**
**2.删除用户信息(选中任意用户删除) **
**3.修改信息(可以修改选中用户的姓名、电话、住址等……
c语言实训项目-模拟彩票系统心得总结
摘要:**模拟彩票系统功能要求: **
**1.登陆功能(三次机会) **
**2.自选功能(1~35之间 不能重复 不能超范围) **
**3.机选功能 (随机出数,要求同上) **
**4. 兑……