n HTML颜色表示 网页中的颜色有三种表示方法 颜色单词:blue、green、red、yellow 10进制表示:rgb(255,0,0)、rgb(0,255,0)、rgb(0,0,255) 16进制表示:#ff0000、#00ff00、#0000ff 自然界中,所有颜色都可以用三种光的不同波长 ...
分类:
Web程序 时间:
2018-04-12 00:14:26
阅读次数:
188
Detch: 1. Detach is used to disconnect a Business Object from an application 2. The Detach button has “disconnected” the Business Object from Order Sy ...
分类:
其他好文 时间:
2018-04-12 00:13:53
阅读次数:
1931
import turtle angles=(0,30,60,90,120,150,180,210,240,270,300,330) colors=("blue","green","pink","purple","black","red","yellow","grey","white","beige" ...
分类:
其他好文 时间:
2018-04-11 23:03:50
阅读次数:
204
给定一个字符串,翻转字符串中的每个单词。例如,给定 s = "the sky is blue",返回 "blue is sky the"。对于C程序员:请尝试用O(1) 时间复杂度的原地解法。说明: 什么构成一个词? 一系列非空格字符组成一个词。 输入字符串是否可以包含前导或尾随空格? 是。但是,您 ...
分类:
其他好文 时间:
2018-04-06 16:44:35
阅读次数:
192
变量:a.简单变量:a-1.定义:@color:red;a-2.使用:body{color:@color;}b.复杂变量:b-1.定义:@mix:{color:red;background:blue;};//此处末尾有分号b-2.使用:body{.@mix();}条件表达式:a.用在根目录:@a:true;&when(@a=true){body{color:red;}}&when(
分类:
其他好文 时间:
2018-04-06 12:27:33
阅读次数:
128
"bzoj" sol 每天每座城市建一个点,该怎么连边就怎么连边,每次只需要在上一次的残余网络上跑最大流,所以复杂度不会太高。 code cpp include include include include using namespace std; int gi() { int x=0,w=1;c ...
分类:
Web程序 时间:
2018-04-05 23:14:20
阅读次数:
240
2.5 import turtle turtle.setup(500,500) turtle.penup() turtle.fd(-50) turtle.pendown() turtle.pensize(10) turtle.pencolor("blue") turtle.pendown() tur... ...
分类:
其他好文 时间:
2018-04-04 23:31:19
阅读次数:
229
import turtle turtle.pensize(10) turtle.pencolor("blue") turtle.penup() turtle.fd(-240) for i in range(4): turtle.penup() turtle.fd(40) turtle.pendown... ...
分类:
其他好文 时间:
2018-04-04 23:16:46
阅读次数:
138
枚举类型枚举类型使用一组常量值来表示特定的数据集合,该集合中数据的数目确定(通常较少),且这些数据只能取预先定义的值。Java枚举类型均自动继承java.lang.Enum类(该类继承了Object类)。声明枚举类型:[public]enum枚举类型名称{枚举对象1,枚举对象2,…,枚举对象n;}eg:publicenumColor{RED,GREEN,BLUE;}获取枚举对象的两种方法:方法一:
分类:
编程语言 时间:
2018-04-02 22:30:34
阅读次数:
226
75. Sort Colors 题目 Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors ...
分类:
其他好文 时间:
2018-03-31 16:39:31
阅读次数:
137