悬疑电视剧

一个大数运算类

↘锁芯ラ 提交于 2020-01-25 00:59:10
#include < stdio.h > #include < math.h > #include < iostream > using namespace std; class decnum { friend decnum pow( const decnum & x, int n); friend decnum root( const decnum & x, int n); friend decnum div( const decnum & x, const decnum & y, decnum & r); friend decnum abs( const decnum & x); friend bool operator == ( const decnum & x, const decnum & y); friend bool operator != ( const decnum & x, const decnum & y); friend bool operator > ( const decnum & x, const decnum & y); friend bool operator < ( const decnum & x, const decnum & y); friend bool operator >= ( const decnum & x, const

SQL行列转换实战

主宰稳场 提交于 2020-01-16 17:00:18
行列转换实例 表ttt有三个字段 seq -- 序列 jcxm -- 检查项目 zhi -- 值 数据分别如下: seq   jcxm   zhi -- ----- -------- -------- 11       1      0.50 11       2      0.21 11       3      0.25 12       1      0.24 12       2      0.30 12       3      0.22 实现功能 创建视图时移动行值为列值 create view v_view1 as select seq, sum (decode(jcxm, 1 , zhi)) 检测项目1, sum (decode(jcxm, 2 , zhi)) 检测项目2, sum (decode(jcxm, 3 , zhi)) 检测项目3 from ttt group by seq; 序号 检测项目1  检测项目2  检测项目3 11       0.50      0.21       0.25 12       0.24      0.30       0.22 技巧: 用THEN中的0和1来进行统计( SUM ) jcxm zhi -- -- ---- a 1 b 1 a 3 d 2 e 4 f 5 a 5 d 3 d 6 b 5 c 4 b 3

1006 Sign In and Sign Out (25point(s)) Easy only once *cmp sort排序问题

风格不统一 提交于 2020-01-13 18:10:54
基本思想: 1.使用类输入,构造成一个序列; 2.直接两次排序; 关键点: 注意sort和cmp的返回值和构造问题; 1 #include<iostream> 2 #include<stdlib.h> 3 #include<stdio.h> 4 #include<vector> 5 #include<string> 6 #include<math.h> 7 #include<algorithm> 8 using namespace std; 9 using std::vector; 10 struct student{ 11 char id[16]; 12 int sh; 13 int sm; 14 int ss; 15 int eh; 16 int em; 17 int es; 18 }; 19 vector<student>vec; 20 bool flag = false; 21 bool cmp(student a, student b) { 22 if (flag) { 23 if (a.sh != b.sh) 24 return a.sh > b.sh; 25 else if (a.sm != b.sm) 26 return a.sm > b.sm; 27 else 28 return a.ss > b.ss; 29 } 30 else { 31 if (a.eh !=

两列

荒凉一梦 提交于 2020-01-13 15:39:49
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>两列</title> <style> .container{ height: 1000px; width: 1000px; /* display: inline-block; */ position: relative; margin: 0 auto; border: 1px solid #fcc; /* text-align: center; */ } .box1{ border: 1px solid red; float:left; width: 30%; height: 100%; } .box2{ border: 1px solid blue; float:left; width: 60%; height: 100%; } .clearfix{ clear: both; } .box3{ border: 1px solid green; float:left; width: 60%;

将这段美化的css代码

怎甘沉沦 提交于 2020-01-12 15:55:04
很多时候如果不是用了很多样式,很难把边框修饰得好看,看了一篇博文,觉得真的挺漂亮,也挺好看。 转载的博文地址 将这段美化的css代码 border:1px solid #96c2f1;background:#eff7ff 应用到div中, <div style="padding:8px;border:1px solid #96c2f1;background:#eff7ff"> border:1px solid #96c2f1;background:#eff7ff</div> 效果如下。 border:1px solid #96c2f1;background:#eff7ff 以下还有十个示例。 border:1px solid #9bdf70;background:#f0fbeb border:1px solid #bbe1f1;background:#eefaff border:1px solid #cceff5;background:#fafcfd border:1px solid #ffcc00;background:#fffff7 border:1px solid #cee3e9;background:#f1f7f9 border:1px solid #a9c9e2;background:#e8f5fe border:1px solid #e3e197;background:

css小技巧

梦想与她 提交于 2020-01-03 14:04:04
最近工作收集的一些css的小技巧: 一、黑白图像 当你需要让一张彩色的图片显示为黑白照片的时候,你可以用下面的一段代码。 img.desaturate{ filter: grayscale(100%); -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); } 二、使用 :not() 在菜单上应用/取消应用边框 先给每一个菜单项添加边框 .nav li{ border-right: 1px solid #666; } 然后再除去最后一个元素 .nav li:last-child{ border-right: none; } 也可以直接使用 :not() 伪类来应用元素 .nav li:not(:last-child){ border-right: 1px solid #666 } 如果你的元素有兄弟元素的话,也可以使用通用的熊年底选择符( ~ ) .nav li:first-child ~ li{ border-left: 1px solid #666 } 三、页面顶部阴影 给网页加上漂亮的顶部阴影效果 body:before{ content: ''; position: fixed; top:

The Shapes of CSS(css的形状)

a 夏天 提交于 2020-01-03 08:40:33
All of the below use only a single HTML element. Any kind of CSS goes, as long as it's supported in at least one browser. (下面的所有内容只使用一个HTML元素。任何一种CSS都可以,只要它在至少一个浏览器中支持。) Square (正方形) /*--> */ /*--> */ #square { width: 100px; height: 100px; background: red; } Rectangle (长方形) /*--> */ /*--> */ #rectangle { width: 200px; height: 100px; background: red; } Circle (圆形) /*--> */ /*--> */ #circle { width: 100px; height: 100px; background: red; -moz-border-radius: 50px; -webkit-border-radius: 50px; border-radius: 50px; } /* Cleaner, but slightly less support: use "50%" as value */ 半圆形(Semicircle) 扇形

浮动广告代码

假装没事ソ 提交于 2019-12-25 01:32:07
浮动广告代码 <div id="img" style="position:absolute;; width: 200; height: 151">广告内容</div> <script LANGUAGE="JavaScript"> var xPos = 20; var yPos = 10; img.style.left= xPos; img.style.top = yPos; var step = 1; var delay = 30; var width,height,Hoffset,Woffset; var y = 1; var x = 1; var interval; img.visibility = "visible"; function changePos() { width = document.body.clientWidth; height = document.body.clientHeight; Hoffset = img.offsetHeight; Woffset = img.offsetWidth; if (y) { yPos = yPos + step; } else { yPos = yPos - step; } if (yPos < 0) { y = 1; yPos = 0; } if (yPos >= (height - Hoffset)) { y =

纯CSS绘制三角形(各种角度)

妖精的绣舞 提交于 2019-12-22 02:12:02
纯CSS绘制三角形(各种角度) CSS三角形绘制方法,学会了这个,其它的也就简单。 我们的网页因为 CSS 而呈现千变万化的风格。这一看似简单的样式语言在使用中非常灵活,只要你发挥创意就能实现很多比人想象不到的效果。特别是随着 CSS3 的广泛使用,更多新奇的 CSS 作品涌现出来。 今天给大家带来 CSS 三角形绘制方法 复制代码 代码如下: #triangle-up { width: 0; height: 0; border-left: 50px solid transparent; border-right: 50px solid transparent; border-bottom: 100px solid red; } 复制代码 代码如下: #triangle-down { width: 0; height: 0; border-left: 50px solid transparent; border-right: 50px solid transparent; border-top: 100px solid red; } 复制代码 代码如下: #triangle-left { width: 0; height: 0; border-top: 50px solid transparent; border-right: 100px solid red; border

将 GridView 中的内容导出到 Excel 中多个工作表(Sheet) 的方法

北城余情 提交于 2019-12-21 21:00:00
Excel 可以保存成 xml 格式,并且支持Sheet功能,因此,我们就可以利用这个功能将 Gridview 导出到多个 Sheet 中去。而且可以很好地控制导出的格式。下面就是完整的代码(注意:本站的代码都是可以直接复制、保存成aspx文件运行的。): ASPX 代码 1 <%@ Page Language= " C# " EnableViewState= " true " %> 2 3 <!DOCTYPE html PUBLIC " -//W3C//DTD XHTML 1.0 Transitional//EN " " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd " > 4 5 <script runat= " server " > 6 7 protected void Page_Load( object sender, EventArgs e) 8 { 9 if (!Page.IsPostBack) 10 { 11 System.Data.DataTable dt = new System.Data.DataTable(); 12 System.Data.DataRow dr; 13 dt.Columns.Add( new System.Data.DataColumn( " 学生班级 " , typeof