<form autocompelate="on" id="from1"><!--常用属性-->邮件:<input type="email">地址:<input type="url">电话:<input type="tel"><!--不支持-->数字:<input type="number" min= ...
分类:
Web程序 时间:
2017-04-07 21:33:30
阅读次数:
174
G. Xor-matic Number of the Graph http://codeforces.com/problemset/problem/724/G 题意:给你一张无向图。定义一个无序三元组(u,v,s)表示u到v的(不一定为简单路径)路径上xor值为s。求出这张无向图所有不重复三元组的s ...
分类:
其他好文 时间:
2017-04-07 19:37:38
阅读次数:
214
1.插件介绍 jquery.qrcode.min.js插件是jq系列的基于jq,在引入该插件之前要先引入jq。能够在客户端生成矩阵二维码QRCode 的jquery插件 ,使用它可以很方便的在页面上生成二维条码。 闲话少说,看demo吧!(haha...) 2.快速使用demo 简单介绍:这是一款快 ...
分类:
Web程序 时间:
2017-04-07 16:01:46
阅读次数:
425
题目链接:hdu 4609 3-idiots 题意: 给你n条线段。问随机取三个,可以组成三角形的概率。 题解: FFT搞,具体可看kuangbin菊苣的详细题解:传送门 1 #include<bits/stdc++.h> 2 #define F(i,a,b) for(int i=a;i<=b;++ ...
分类:
其他好文 时间:
2017-04-07 09:30:01
阅读次数:
246
Hide static text 1.use a field in derived/work to instead static text. 2.use a groupbox to contain the staic text, select "Hide all Fields when Group ...
分类:
其他好文 时间:
2017-04-07 01:12:33
阅读次数:
148
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace 简答题5.Entit ...
for i in range(10): if i < 5: continue#跳出本次循环 break跳出整个循环 print(i) continue是跳出本次循环,break是本层循环。 ...
分类:
其他好文 时间:
2017-04-06 19:26:07
阅读次数:
134
https://zhidao.baidu.com/question/522381304.html?qbl=relate_question_0&word=%D7%D4%D0%D0%B3%B5%C7%B0%C2%D6%BA%F3%C2%D6%D7%AA%B6%AF%B7%BD%CF%F2 自行车两个轮子 ...
分类:
其他好文 时间:
2017-04-06 18:46:07
阅读次数:
223
IE6下有时候png格式的图片会存在背景的问题,以下是我常用的解决办法: /** * DD_belatedPNG: Adds IE6 support: PNG images for CSS background-image and HTML <IMG/>. * Author: Drew Diller ...
分类:
其他好文 时间:
2017-04-06 15:34:26
阅读次数:
245
算法提高 12-1三角形 时间限制:1.0s 内存限制:256.0MB 时间限制:1.0s 内存限制:256.0MB 问题描述 为二维空间中的点设计一个结构体,在此基础上为三角形设计一个结构体。分别设计独立的函数计算三角形的周长、面积、中心和重心。输入三个点,输出这三个点构成的三角形的周长、面积、外 ...
分类:
编程语言 时间:
2017-04-06 09:47:51
阅读次数:
315