C++程序
文章平均质量分 77
Youzen_ing
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
链表的简单实现
#include using namespace std; struct Student { long long num; float score; struct Student *next; }; int n;//全局变量 Student *head; Student *creat(); void print(Student *); Student *insert(Stu转载 2017-06-11 22:59:30 · 509 阅读 · 0 评论 -
计算表达式代码
/*实验三 顺序栈实现算术表达式的计算(1) 输入格式:一行一个算术表达式 输出格式:一行一个输出结果 样例: 输入样例: 2*(3 + 4) 输出样例 14 【基本要求】运算对象均为整数 【选作内容】运算对象扩充为可以是带小数位的浮点数 */ //---------------------------------------------------------------原创 2017-11-01 19:22:21 · 1131 阅读 · 0 评论
分享