码迷,mamicode.com
首页 >  
搜索关键字:if_else    ( 23991个结果
Python中的判断、循环 if...else,while
if...else语句:a=3; b=3;if a == b :print(a,b)elif a = 0 and n = 12 and n = 0 and n = 12 and n <= 25): print("hhh")一个字符串也相当于是一个数组,通过for循环可以将每个字符输出for循环,相当...
分类:编程语言   时间:2014-07-03 07:01:19    阅读次数:186
数组杂谈
1、声明一个数列int a[3]={1,2,3};int a[]={1,2,3};char city[]={'a','b','c'};char city[]="abc";2、处理数列for(int i=0; i list[mid]) low = mid+1; else return ...
分类:其他好文   时间:2014-07-03 06:51:00    阅读次数:224
判断浏览器是否为IE
if (!+[ 1, ]) { //是IE浏览器} else { if (document.documentMode == 10) { //单独判断IE10 } else //非IE浏览器 }}
分类:其他好文   时间:2014-07-02 22:08:16    阅读次数:117
大整数乘法 python实现
def recursive_multiply(x, y, n): if n==1: return x*y else: a = x/pow(10, n/2) b = x-a*pow(10, n/2) c = y/pow(10, n/2) d = y-c*pow(10, n/2) ac = re...
分类:编程语言   时间:2014-07-01 12:20:43    阅读次数:273
Android Wear - Design Principles for Android Wear(设计原则)
原文地址:http://developer.android.com/design/wear/principles.html 本篇设计原则提供了一些关于应该怎样规划和评估你的Android Wear应用程序设计的简单思路。 Focus on not stopping the user and all else will follow(专注于不打算用户并让一切后续跟随上来) ...
分类:移动开发   时间:2014-07-01 11:28:20    阅读次数:309
javascript滚动条响应鼠标滑轮的实现上下滚动事件
实现鼠标滚动滚轮事件: var scrollFunc=function(e){ e=e || window.event; if(e.wheelDelta){//IE/Opera/Chrome if(e.wheelDelta==120) { //向上滚动事件 alert(e.wheelDeta +"向上"); }else { ...
分类:编程语言   时间:2014-07-01 11:16:01    阅读次数:236
python property属性
可以检查参数,一直没注意这个语言特性,忽略了很多细节,感谢 vitrox class Person( object ): def __init__( self, name ): if not isinstance( name, str ): raise TypeError( '...' ) else:...
分类:编程语言   时间:2014-07-01 10:00:34    阅读次数:181
第一个python小程序,2进制转10进制
#BintoDec #myfirstpythonprograme n=c=itm=0 a=raw_input(‘pleaseinputBinarynumber:\n‘) forninrange(0,len(a)): b=a[n:n+1] #print‘nis‘,n #print‘bis‘,b #print‘len‘,len(a[n:]) ifb==‘1‘: c=2**(len(a[n:])-1) #print‘c1is‘,c else: c=0 #print‘cis0‘ itm=c+itm #print‘it..
分类:编程语言   时间:2014-07-01 09:35:48    阅读次数:226
算法基础练习--最大公约数和最小公倍数
var gcd = function (n1,n2){ //最大公约数 if(n1 == n2 ){return n1;} var bigger = 0; var smaller = 0; if(n1 > n2){bigger = n1;smaller = n2;} else {bigger = n2;smaller = n1;} for(var j = 1; j <= smaller ;...
分类:其他好文   时间:2014-07-01 08:30:43    阅读次数:190
SWIFT学习笔记01
1、Swift,用来判断option是不是nil,相当于OC的 if(option) if let name = option{ greeting = “if=====“ }else{ greeting = "else===" } 2、运行switch中匹配到的子句之后,程序会退出switch语句,并不会继续向下运行,所以不需要在每个子句结尾写break。 3、//使用..创建的范围...
分类:其他好文   时间:2014-07-01 07:05:30    阅读次数:234
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!