ICode9

精准搜索请尝试: 精确搜索
  • 自考新教材-p279_22020-01-27 12:55:38

    源程序: #include <iostream> using namespace std; int main() { int x, count, sum = 0; freopen("c:\\input.txt", "r", stdin); //将标准输入重定向到文件input.txt for (count = 0; count<10; count++)   //从输入流中读入10个整数进行处理 { cin >> x; s

  • 自考新教材-p2282020-01-12 19:00:32

    互包含的类 源程序: #include<iostream> #include<string> using namespace std;   class B; class A { public: int aInt; B *bPoint=NULL; void SetValue(int v) { aInt=v; } };   class B { public: A aCla; int bInt; void SetValue(int v) { bInt=v;

  • 自考新教材-p2532020-01-12 09:55:59

    多态机制下对象存储空间的大小 源程序: #include <iostream> using namespace std; class A { public: int i; virtual void func(); virtual void func2(); }; class B :public A { int j; void func() {} }; int main() { cout << sizeof(A) << "," <&l

  • 自考新教材--p98-p992019-12-11 11:52:31

    源程序: #include <iostream> #include <string> using namespace std;   class myDate { private: int year, month, day; public: myDate(); void setDate(int y,int m,int d) { year = y; month = m; day = d; } void setDate(myDate dd) { year = dd.

  • 自考新教材--p97(2)2019-12-11 11:03:18

    源程序: #include <iostream> #include <string> using namespace std;   class myDate { private: int year, month, day; public: myDate(); myDate(int);   //默认参数,从右向左初始化 myDate(int, int); myDate(int, int, int); void show(); }; myDate::myDate() :ye

  • 自考新教材--p942019-12-11 10:51:36

    源程序: #include <iostream> #include <string> using namespace std;   class myDate { private: int year, month, day; public: myDate(); myDate(int);   //默认参数,从右向左初始化 myDate(int, int); myDate(int, int, int); void show(); }; myDate::myDate() :ye

  • 自考新教材--p982019-12-06 17:50:40

    源程序: #include <iostream> #include <string> using namespace std; class myDate { public: myDate(); myDate(int); myDate(int,int); myDate(int,int,int); void setDate(int a, int b, int c) { year = a; month = b; day = c; } void printDate()

  • 自考新教材--p60_5_12019-12-03 09:02:31

    源程序: #include <iostream> #include <string> using namespace std; int main() {   int n,i;   cout << "输入几个字符串:";   cin >> n;   string *p;   string *A = new string[n];   p = A;   cout << endl;   cout << &q

  • 自考新教材--p542019-12-02 19:54:36

    源程序: #include <iostream> #include <cstring> using namespace std; int main() { string s1 = "c++语言"; string s2 = "程序设计"; string s3 = s1 + s2; string s4; s4 = s1.append(s2); if (s3 == s4) cout << "结果相同"

  • 自考新教材--p522019-12-02 19:00:34

    源程序: #include <iostream> #include <string> using namespace std; int main() { string s1, s2; s1 = "c++程序"; s2 = s1; string s3; cout << "s3=" << s3 << endl; s3 = s1 + s2; cout << s1 + s2 <<

  • 2019二级建造师-建筑-基础班-精讲班课程更新进度2019-02-25 10:51:15

    01--大立教育-精讲班-赵爱林(新教材) 02-ES-精讲班-郭炜  新教材 03-233-建筑-精讲班-宋协清 新教材 04-中业-系统精讲-杨国斌-新教材 05-JG建工-精讲班-张福生【推荐】3-5 新教材 06-233建筑梁志伟精讲班27-31 07-ZD-精讲班-周超 新教材 08-HX-精讲班-王玮【新教材重点推荐】1-3 09

  • 2019二级建造师-管理-基础班-精讲班课程更新进度2019-02-19 16:01:30

    01-★★★★★-ZY-精讲班-朱俊文【新教材强烈推荐】新教材 02-★★★★★-HQ-管理--张君 新教材 03-★★★★2019年二建【管理】233-精讲班-赵春晓 04-★★★JG-管理-基础班-丰景春 新教材 06-JXL-管理-精讲班-纪小蓝 07--HQ环球-精讲班-张君【新教材推荐】01 08-HX-龙炎飞-精讲班

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有