上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 54 下一页
摘要: 源程序: #include <iostream>using namespace std; class myComplex{private: double real,imag;public: myComplex(); myComplex(double r,double i); myComplex &o 阅读全文
posted @ 2021-11-29 19:19 bobo哥 阅读(194) 评论(0) 推荐(0)
摘要: 源程序: #include <iostream>using namespace std; class myComplex{private: double real, imag;public: myComplex(); myComplex(double r, double i); void outCo 阅读全文
posted @ 2021-11-28 11:18 bobo哥 阅读(70) 评论(0) 推荐(0)
摘要: 源程序: #include <iostream>using namespace std; class A{private: int x; const int y;public: A(int a, int b):x(a),y(b) //常变量必须在初始化列表中被初始化 { } void show() 阅读全文
posted @ 2021-11-28 10:28 bobo哥 阅读(48) 评论(0) 推荐(0)
摘要: #include <iostream>using namespace std; class A{private: int a, b;public: A(int aa, int bb) { a = aa--; b = a*bb; } void show() { cout << "a=" << a << 阅读全文
posted @ 2021-11-28 10:17 bobo哥 阅读(40) 评论(0) 推荐(0)
摘要: 源程序: #include <iostream>using namespace std; class myComplex{private: double real, imag;public: myComplex(); myComplex(double r, double i); myComplex 阅读全文
posted @ 2021-11-28 09:39 bobo哥 阅读(48) 评论(0) 推荐(0)
摘要: 源程序: #include <iostream>#include <cmath>using namespace std; class Pixel;class Test{public: void printX(Pixel p);}; class Pixel{private: int x,y;publi 阅读全文
posted @ 2021-11-28 08:11 bobo哥 阅读(41) 评论(0) 推荐(0)
摘要: 网络图: 左边路由器的配置: 右侧路由器的配置: 启动simulation(模拟)可以看到数据包的移动 ping通图: 阅读全文
posted @ 2021-11-26 13:42 bobo哥 阅读(327) 评论(0) 推荐(0)
摘要: 源程序: #include <iostream>#include <cmath>using namespace std; class A{private: const int a;public: A(int x) { a=x; } void show() { cout<<"a="<<a<<endl; 阅读全文
posted @ 2021-11-22 20:22 bobo哥 阅读(66) 评论(0) 推荐(0)
摘要: 源程序: #include <iostream>#include <string>using namespace std; class student{private: int num; string sname;public: student() { } student(int n,string 阅读全文
posted @ 2021-11-15 20:17 bobo哥 阅读(56) 评论(0) 推荐(0)
摘要: 请打开MySQL 5.0完成以下题目,把所建立的数据库文件(*.mdf,*.ldf)分离后复制到考生文件夹中;如果要求写出SQL语句,请把SQL窗口及运行结果截屏保存(命名为2_x.jpg,x是代表小题题号)并复制到考生文件夹中: 创建数据库exam+考号,如考号为123410001,则数据库名为e 阅读全文
posted @ 2021-11-05 13:44 bobo哥 阅读(155) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 54 下一页