上一页 1 2 3 4 5 6 7 ··· 54 下一页
摘要: 网络图: 阅读全文
posted @ 2022-10-21 10:37 bobo哥 阅读(95) 评论(0) 推荐(0)
摘要: 网络图: 服务器端设置: 客户端配置: 下面配置链路聚合,VLAN (略) 阅读全文
posted @ 2022-10-12 11:16 bobo哥 阅读(102) 评论(0) 推荐(0)
摘要: 第一步:输入MySQL网站 www.mysql.com 选择DOWNLOADS并点击进入: 选择最下面的 “MySQL Community(GPL) Downloads>>” 选项, 进入下一页 选择最上面的 “MySQL Community Downloads”选项, 此时进行下载 成功下载mys 阅读全文
posted @ 2022-10-05 16:41 bobo哥 阅读(2303) 评论(0) 推荐(0)
摘要: 服务器: 本机mysql 客户端:虚拟机winXP 步骤: 1、在本机服务器端创建 一个用户deng create user 'deng'@'%' identified by '1234' 用户名:deng 密码:1234 2、在服务器端为用户zhang分配权限 : grant select,ins 阅读全文
posted @ 2022-09-27 11:46 bobo哥 阅读(204) 评论(0) 推荐(0)
摘要: /*people是基类,student和graduate是子类,重载“==”运算符输入2个学生的信息:姓名、编号、身份证号、班级、专业输入1个研究生的信息:姓名、编号、身份证号、班级、专业、导师重载“==”,当两个学生的编号相同时,调用重载运算符,输出错误信息。*/ #include <iostre 阅读全文
posted @ 2022-09-18 14:55 bobo哥 阅读(68) 评论(0) 推荐(0)
摘要: 1、新建数据库: 2、新建学生表、课程表、成绩表和教师表: 3、表之间的关系: 4、问题 : (1)查询Student表中的所有记录的Sname,Ssex和Class列; (2)查询教师所在的单位即不重复的Depart列: (3)查询Student表的所有记录: (4)查询Score表中成绩在60至 阅读全文
posted @ 2022-09-15 17:55 bobo哥 阅读(369) 评论(0) 推荐(0)
摘要: 源程序: //编写一个程序,将从键盘输入的n个字符串保存在一个一维数组A中。在输入字符串之前,先输入n的值。//要求,数组A需要动态申请空间,程序运行结束前再释放掉。//再输出n字符串中最长和最短的串,计算平均字符中的长度。#include <iostream>#include <string>us 阅读全文
posted @ 2022-07-03 16:56 bobo哥 阅读(168) 评论(0) 推荐(0)
摘要: 程序一: #include <iostream>#include <stdlib.h>#define COST 20using namespace std;class tiji //体积{private: double length, width, height; //长宽高public: tiji 阅读全文
posted @ 2022-06-26 17:07 bobo哥 阅读(55) 评论(0) 推荐(0)
摘要: 源程序: #include <stdio.h>#include <stdlib.h>typedef int DataType;typedef struct LinkQueueNode{ DataType data; struct LinkQueueNode *next;}LkQueNode; typ 阅读全文
posted @ 2022-06-19 22:34 bobo哥 阅读(66) 评论(0) 推荐(0)
摘要: 源代码: #include <stdio.h>#include <stdlib.h>#define MAXSIZE 100 typedef struct cycqueue{ int data[MAXSIZE]; int front,rear; //声明队列的头指针和尾指针}CycQue; //队列的 阅读全文
posted @ 2022-06-18 11:47 bobo哥 阅读(56) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 54 下一页