您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. 日期类的C++代码(老师做的)

  2. #include using namespace std; #include "MyDate.h" #include bool MYDATE::dowFlag = false; void MYDATE::Input() { int year, month, day; char c1, c2; while(!(cin >> year >> c1 >> month >> c2 >> day) || ! IsValid(year, mo
  3. 所属分类:C

    • 发布日期:2009-12-28
    • 文件大小:8192
    • 提供者:wordnoword
  1. c++课程设计(公司人员管理系统)

  2. c++课程设计 #include #include #include #include //全局数据,对象 double ManagerSalary; //经理固定月薪 double SalesManagerSalary; //销售经理固定月薪 double SalesManagerPercent; //销售经理提成% double SalesPercent; //销售人员提成% double WagePerHour; //技术人员小时工资 int ID; //员工标识(要保证唯一)
  3. 所属分类:C

    • 发布日期:2010-01-06
    • 文件大小:205824
    • 提供者:zhangjince1988
  1. 空间后方交会_摄影测量

  2. #include #include #include #include #include #include "CCMat.h" #include "Point.h" using namespace::std; //坐标: //f,H double f,H,m; int N; //a1-c3 double a1,a2,a3,b1,b2,b3,c1,c2,c3; //XYZ的代号: double Xb,Yb,Zb; //六个外方为元素: double g_Xs,g_Ys,g_Zs; do
  3. 所属分类:专业指导

    • 发布日期:2011-06-24
    • 文件大小:6144
    • 提供者:cxzkshi
  1. c++图书管理系统

  2. /*****************************************************************************************/#include #include #include #include //输入/输出文件流类using namespace std;const int Maxr=100;//最多的读者const int Maxb=100;//最多的图书const int Maxbor=5;//每位读者最多借五本书//读者类,实现
  3. 所属分类:iOS

    • 发布日期:2006-02-23
    • 文件大小:9216
    • 提供者:chenxh
  1. 数据结构栈的实现

  2. 实验目的 1.掌握栈、思想及其存储实现。 2.掌握栈、常见算法的程序实现。 实验原理 1. 根据实验内容编程,上机调试、得出正确的运行程序。 实验仪器 计算机及C++编译软件 实验步骤 1. 编译运行程序,观察运行情况和输出结果。 2. 写出实验报告(包括源程序和运行结果)。 实验内容 \1.采用链式存储实现栈的初始化、入栈、出栈操作 CODE: #include template class link { public: T date; link *next; link(const T in
  3. 所属分类:其它

    • 发布日期:2011-12-24
    • 文件大小:92160
    • 提供者:yangbuzhi456
  1. cin.clear()、cin.sync()和cin.ignor()的用法

  2. cin.clear()、cin.sync()和cin.ignor()的用法
  3. 所属分类:C++

    • 发布日期:2012-10-31
    • 文件大小:17408
    • 提供者:acopo
  1. c++,cin.clear用法

  2. 第一次搞cin,真是搞昏人了,现在逐渐开始明白是什东东,一起探讨一下吧!
  3. 所属分类:C/C++

    • 发布日期:2015-03-08
    • 文件大小:25600
    • 提供者:qq_18374539
  1. RSA的c++代码

  2. #include #include using namespace std; #define MAXLENGTH 500 //明文最大长度,即所允许最大整数个数 int size = 0;//保存要进行加密的正整数的个数 int p, q; //两个大素数 int n, phi; //n = p * q,phi = (p-1) * (q-1) 是n的欧拉函数值 int e; //{e, n}为公开密钥 int d; //{d, n}为秘密密钥 int clear[MAXLENGTH], Cip
  3. 所属分类:网络安全

    • 发布日期:2015-04-27
    • 文件大小:3072
    • 提供者:baidu_27765013
  1. c++职工记录表

  2. #include #include #include #include #include #include #include using namespace std; class Employee{ protected: int number; string name; public: Empl oyee(){} Employee(int num,string nam); void setname(string n); void setnumber(int n); string getn
  3. 所属分类:C++

    • 发布日期:2016-04-22
    • 文件大小:5120
    • 提供者:lhs295988029
  1. 双向循环链表实现三十五进制(1~Z)内的大整数加减法

  2. 输入随意,可以按照xxxx,xxxx,xxxx格式来 输出xx,xxxx,xxxx,xxxx 数据结构课程设计,加了一些特殊情况的处理,自我认为还不错,但没有用类封装,如有不好,请多多指教,部分代码: int main() { string a,b; char render; Big_num p1,p2; system("mode con lines=35 cols=65"); system("colo r 3f"); //system("color C"); system("title 恒天
  3. 所属分类:C/C++

    • 发布日期:2018-01-07
    • 文件大小:355328
    • 提供者:hengtian_real
  1. Codeforces Round #628 (Div. 2) A~~D

  2. A #include using namespace std; typedef long long ll; int main(){ int t; cin>>t; while(t--){ ll x; cin>>x; cout<>t; while(t--){ st.clear(); ll n; cin >>n; ll re
  3. 所属分类:其它

    • 发布日期:2021-01-03
    • 文件大小:19456
    • 提供者:weixin_38618024
  1. C++中string与int的相互转换实现代码

  2. 做ACM时,经常用到string和int的转换,下面的程序: 核心代码: #include #include #include using namespace std; int main() { /////////////////////////// string 转为 int string str=1234; int n; istringstream iss;//istringstream从string读入,和cin一样仅仅重载了>>,可以把string转为int is
  3. 所属分类:其它

    • 发布日期:2021-01-20
    • 文件大小:32768
    • 提供者:weixin_38723699