
个人
XYPSYSUTT
总之岁月漫长,然而值得等待。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
数据结构大作业W1
银行叫号系统系统要求:五个服务窗口;一个客户队列,按先后顺序排列;显示每个窗口顺序号、等待人数、每个顾客得到服务等待时间与最后平均时间及总客户数;数据结构设计服务窗口 Windowsclass Windows {private: windows_status status; list<Customer> Customer_list;public: ...原创 2019-09-21 19:36:38 · 252 阅读 · 0 评论 -
Fraction
fraction.hpp#ifndef FRACTION_H#define FRACTION_H#include <iostream>class fraction {private: int _numerator, _denominator; int gcd(const int &, const int &) const; // If you don...原创 2019-04-20 14:29:02 · 1252 阅读 · 0 评论 -
文件管理系统初步
//Project.cpp#include <iostream>#include <fstream>#include <string>#include <list>#include<conio.h>#include <iomanip>#include "Project1.h"using namespace st...原创 2019-04-07 14:32:57 · 227 阅读 · 0 评论 -
High precision float c++
//HugeInteger.cpp#include <iostream>#include <cmath>#include <string.h>using namespace std;#define maxlen 10000class HI{ public: friend ostream& operator<<(o...原创 2019-03-17 17:20:16 · 232 阅读 · 0 评论 -
c++ My_task
//Hugeinteger.cpp templet#include &amp;lt;iostream&amp;gt;#include &amp;lt;cmath&amp;gt;#include &amp;lt;string.h&amp;gt;using namespace std;#define maxlen 10000class HP{ public: friend ostream原创 2019-03-10 23:37:15 · 195 阅读 · 0 评论 -
c how to program课后习题 16
//MyTime.h 16.4class Time{ public: Time(int ph,int ps,int pm){ h=ph; s=ps; m=pm; } Time(Time &tt){ h=tt.h; s=tt.s; m=tt.m; } ...原创 2019-03-10 17:46:29 · 357 阅读 · 0 评论 -
c how to program课后习题 15
//按值与按引用15.6int tripleCallByValu(int a){ return 3*a;}int tripByReference(int &a){ a*=3; return a;}//函数模板 15.9template <class t>t maximum(t v1,t v2,t v3){ t max= v1; ...原创 2019-03-10 16:17:17 · 362 阅读 · 0 评论