上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 39 下一页
摘要: package u13; class Coordinates { private int x; private int y; public Coordinates(int x, int y) { this.x = x; this.y = y; } public int getX() { return 阅读全文
posted @ 2021-10-20 17:15 yasai 阅读(25) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include <vector> using namespace std; //棋子颜色 enum PieceColor { BLACK, WHITE }; //棋子位置 struct PiecePos { int x; 阅读全文
posted @ 2021-10-19 21:58 yasai 阅读(39) 评论(0) 推荐(0) 编辑
摘要: package u12; import java.util.Scanner; public class Client { public static void main(String[] args) { MainFrame f = new MainFrame(); f.fun(); } } pack 阅读全文
posted @ 2021-10-18 18:56 yasai 阅读(34) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> //子系统:内存 class Memory { public: Memory() {} void selfCheck() { printf("内存自检\n"); } }; //子系统:CPU class CPU { public: CPU() {} void 阅读全文
posted @ 2021-10-17 21:42 yasai 阅读(24) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include <list> using namespace std; class Phone { public: Phone() {} virtual ~Phone() {} virtual void ShowDecor 阅读全文
posted @ 2021-10-16 16:19 yasai 阅读(31) 评论(0) 推荐(0) 编辑
摘要: package u11; public class ComplexPhone extends Changer{ public ComplexPhone(Phone phone) { super(phone); System.out.println("变成高级手机"); flash(); } publ 阅读全文
posted @ 2021-10-15 20:12 yasai 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 1. 对系统类进行描述,确定属性和方法。 2. 分析系统类模型,找出类之间的关系并画出类图。 3. 绘制“取消会议(Remove Meeting )”的时序图。 阅读全文
posted @ 2021-10-15 13:44 yasai 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 1. 导入数据展示: 2. 文章统计 3. 文章分类 阅读全文
posted @ 2021-10-14 16:20 yasai 阅读(28) 评论(0) 推荐(0) 编辑
摘要: package u10; public class Client { public static void main(String a[]) { AbstractFile obj1, obj2, obj3, obj4, obj5; Folder plate1, plate2, plate3; obj 阅读全文
posted @ 2021-10-14 12:36 yasai 阅读(32) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include <list> using namespace std; class Component { protected: string name; public: Component(string name) :n 阅读全文
posted @ 2021-10-13 19:22 yasai 阅读(39) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 39 下一页