摘要: 评委打分案例 1.利用容器 #include <iostream> using namespace std; #include<string> #include<vector> #include<deque> #include<algorithm> class Person { public: Pe 阅读全文
posted @ 2023-04-14 22:00 许七安gyg 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 指导书五 实验任务二]:*三维坐标向量类* 【问题描述】 设计一个描述三维坐标的向量类vector3D,成员如下: 数据成员: ² 三个坐标x,y,z,float类型,私有访问属性 公有函数成员: Ø 三个参数均有默认值的构造函数,默认值为0,0,0; Ø 重载输入输出运算符,输出格式为(x, y, 阅读全文
posted @ 2023-04-14 21:50 许七安gyg 阅读(60) 评论(0) 推荐(0) 编辑
$(document).ready(function() { // 禁止右键 $(document).bind("contextmenu", function(){return false;}); // 禁止选择 $(document).bind("selectstart", function(){return false;}); // 禁止Ctrl+C 和Ctrl+A $(document).keydown(function(event) { if ((event.ctrlKey&&event.which==67) || (event.ctrlKey&&event.which==86)) { //alert("对不起,版权所有,禁止复制"); return false; } }); });