09 2016 档案

摘要:一、文件操作 1、File类的常用静态方法: void AppendAllText(string path, string contents),将文本contents附加到文件path中 bool Exists(string path)判断文件path是否存在 string[] ReadAllLin 阅读全文
posted @ 2016-09-29 20:24 佩喻幻 阅读(1378) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2016-09-27 23:21 佩喻幻 阅读(229) 评论(0) 推荐(0)
摘要:#include <iostream> using namespace std; struct Node { double coe; //系数 int exp; //指数 Node *next; }; void CreatPoly(Node *&head, int n) // 生成带表头结点的单链表 阅读全文
posted @ 2016-09-27 23:08 佩喻幻 阅读(8493) 评论(0) 推荐(0)