其实作为条件判断语句或者循环语句,我们在前面已经多多少少涉及了一些,现在我们再做一些补充或者把几个要注意的地方说一下。主要有以下常用语句:if、while、for,以及相互搭配使用的else、elif、break...
分类:
编程语言 时间:
2015-02-01 02:04:47
阅读次数:
265
①if-elif-elif-else-fi if-fi ` if(($a > 30));then echo $a;fi ` or ` if [ $a -gt 30 ];then echo $a;fi ` if-else-fi ` if(($a = 30));then echo $a;...
分类:
系统相关 时间:
2015-01-30 17:32:11
阅读次数:
128
if语句if语句中,代码块是按缩进的空格数量来判断的,也就是说空格数量一致的相邻行会被当作一个代码块,当if的条件成立的时候它就会得到执行。x = 100if x > 50: print 'x is high, ' print 'and high up in the sky!'elif ...
分类:
编程语言 时间:
2015-01-26 13:13:14
阅读次数:
165
Day1:输入输出语句:input、print控制语句:if、else、elif…循环语句:for(类似于C#里面的foreach),while…type(), isinstance()…data type:int, float, bool, str…`operator:**, //,…列表:一个打...
分类:
编程语言 时间:
2015-01-25 11:06:54
阅读次数:
219
temp = '32'if temp > 85: print "Hot"elif temp > 62: print "Comfortable" else: print "Cold" 结果输出为Hot.Why?Essentially, "...the choice whether one ...
分类:
编程语言 时间:
2015-01-23 00:39:03
阅读次数:
311
1、数值比较! /bin/bashecho "enter a score:"read num1if [ $num1 -ge 80 ]then echo "Very Good"elif [ $num1 -lt 80 -a $num1 -ge 60 ]then echo "Good"else echo ...
分类:
系统相关 时间:
2015-01-22 12:53:09
阅读次数:
230
先举例:
age = 20
if age >= 18 :
print 'Adult'
elif age = 18:
...
分类:
编程语言 时间:
2015-01-20 20:37:45
阅读次数:
215
目录 文件包含 #include #include_next #import 宏定义 #define #undef 条件编译 #if #else #endif #if define #ifdef #ifndef #elif 错误、警告处理 ...
分类:
移动开发 时间:
2015-01-20 15:22:42
阅读次数:
514
//点击屏幕自对对焦#if UNITY_EDITOR if(!EventSystem.current.IsPointerOverGameObject()&&Input.GetMouseButtonUp(0))#elif UNITY_ANDROID || UNITY_IP...
分类:
其他好文 时间:
2015-01-19 10:48:19
阅读次数:
214
原文:C#预处理器指令
C#中的预处理器指令 目录
1.#define 和 #undef
2.#if、#elif、#else 和#endif
3.#warning 和 #error
4.#region 和#endregion
5.#line
6. #pragma C#中有许多名为“预处理器指令”的命...