随笔分类 -  课程

摘要:第一题 第二题 阅读全文
posted @ 2019-03-26 22:58 LightAc 阅读(314) 评论(0) 推荐(0)
摘要:第一题 第二题 阅读全文
posted @ 2019-03-24 13:49 LightAc 阅读(154) 评论(0) 推荐(0)
摘要:#include #include #include using std::cin; using std::cout; using std::endl; using std::string; void next(string & str,int n,string * store,int &m); void swap(string & str,int location1,int location... 阅读全文
posted @ 2019-03-23 23:18 LightAc 阅读(144) 评论(0) 推荐(0)
摘要:第一题 第二题 第三题 阅读全文
posted @ 2019-03-19 18:48 LightAc 阅读(128) 评论(0) 推荐(0)
摘要:实验一 实验二 阅读全文
posted @ 2019-03-17 19:57 LightAc 阅读(399) 评论(0) 推荐(0)
摘要:问题一(数字根问题)#include #include using namespace std;int roots(int num) { int res = 0; while (num) { res += num % 10; num /= 10; } i... 阅读全文
posted @ 2019-03-12 22:33 LightAc 阅读(159) 评论(0) 推荐(0)
摘要:实验一:C++的一些基本输入实验二:用C++判断一个数是不是素数实验三:求一个数字分解成每一位数字的和模拟银行账户(写得比较傻)//#include//using namespace std;//void main()//{// char name[20];... 阅读全文
posted @ 2019-03-06 14:44 LightAc 阅读(102) 评论(0) 推荐(0)

返回顶端