码迷,mamicode.com
首页 >  
搜索关键字:man shadow    ( 15788个结果
Leetcode Valid Palindrome
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A man, a plan, a canal: Pana...
分类:其他好文   时间:2014-07-06 16:45:00    阅读次数:201
css3图片墙
css相关知识:1. 使用box-shadow设置图片阴影,为照片加上阴影eg: box-shadow: 0 0 5px 3px #abc2. 使用tansform-origin定义变形原点eg: -webkit-transform-origin: 0 1px3. 使用transform变形,常用变...
分类:Web程序   时间:2014-07-03 20:41:28    阅读次数:242
leecode 回文字符串加强版
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A man, a plan, a canal: Pana...
分类:其他好文   时间:2014-07-03 19:38:58    阅读次数:287
分支-10. 计算个人所得税(10)
#include#includeusing namespace std;int main(){ float x; cin>>x; cout<<setiosflags(ios::fixed)<<setprecision(2); if(x<=1600) cout<<0.00<<endl; else i....
分类:其他好文   时间:2014-07-02 18:23:21    阅读次数:177
分支-09. 分段计算居民水费(10)
#include#includeusing namespace std;int main(){ float x; cin>>x; cout<<setiosflags(ios::fixed)<<setprecision(2); if(x<=15) cout<<4*x/3<<endl; else c.....
分类:其他好文   时间:2014-07-02 18:10:27    阅读次数:200
分支-11. 计算工资(15)
#include#includeusing namespace std;int main(){ int y,t; float s; cin>>y>>t; cout<<setiosflags(ios::fixed)<<setprecision(2); if(y<=4) if(t<=40) s=3...
分类:其他好文   时间:2014-07-02 17:48:01    阅读次数:235
用户、组以及相关文件说明
用户分类:管理员:root用户,UID为0系统用户:UID范围1-499一般用户:UID范围:500-60000组分类:基本组或私有组:创建用户时,如果没有为其指定所属的组,则系统默认会创建一个与用户名同名的组。附属组:默认组以外的其他组。当一个用户执行程序的时候,系统会判断当前用户..
分类:其他好文   时间:2014-07-02 11:52:41    阅读次数:239
Javascript-自定义对象转换成JSon后如何再转换回自定义对象
man是自定义的对象,使用var tim = JSON.stringify(man); var newman=JSON.parse(tim)后newman的类型是“object”并不是一个Man,怎么才能变回一个Man呢? function Man() { this._type = "man"; this.name=""; this.run = function () {...
分类:编程语言   时间:2014-07-02 09:51:34    阅读次数:187
【LeetCode】Valid Palindrome
题目 Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example, "A man, a plan, a canal: Panama" is a palindrome. "race a car" i...
分类:其他好文   时间:2014-07-02 09:49:04    阅读次数:271
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!