using System; using System.Collections.Generic; using System.Linq; using System.Text;namespace ConsoleApplication1 { class Program { static void Ma...
分类:
其他好文 时间:
2014-07-31 09:46:35
阅读次数:
233
#region 数组 最大值 最小值 平均值 求和 冒泡排序 int[] arrag = new int[5] { 31, 62, 83, 54, 85 }; for (int i = 0; i arrag[j]) { int myarrag; myarrag = arrag[i]; a...
分类:
其他好文 时间:
2014-07-31 09:44:06
阅读次数:
181
1到4的随机数Random Random1 = new Random(); int i = Random1.Next(1,4); Console.WriteLine(i); Console.ReadKey();
分类:
其他好文 时间:
2014-07-31 09:41:45
阅读次数:
209
输出:Console.Write("hello");换行输出:Console.WriteLine("hello");获取输入的值:Console.ReadLine()控制台不关闭:Console.ReadKey();占位符:Console.WriteLine("Sum:{1} Minus:{0} R...
分类:
其他好文 时间:
2014-07-31 09:35:45
阅读次数:
217
一、安装基础环境包yum -y install gcc gcc-c++openssl*yum -y install libjpeg libjpeg-devel libpng libpng-devel freetype freetype-develyum -y install libxml2 libx...
分类:
其他好文 时间:
2014-07-31 02:22:45
阅读次数:
218
Midlife for many is a time of transition, a time of questioning and a time of change, not just physically, but emotionally and mentally. It’s when you...
分类:
其他好文 时间:
2014-07-31 02:18:35
阅读次数:
325
为了方便自己回顾记忆,将今天实验的hadoop命令总结一下,方便后续查看。注意,下述命令是在hadoop/bin 下操作的。1.hadoop fs -ls \ ->查看当前下面的所有目录。2.hadoop fs -mkdir xxx ->创建xxx文件夹在hadoop文件系统上。3.hadoop ....
分类:
其他好文 时间:
2014-07-31 02:18:05
阅读次数:
283
defrex01(self):username=QtCore.QRegExp('[a-zA-Z0-9_]{2,10}')self.names.setValidator(QtGui.QRegExpValidator(username,self))mainname=QtCore.QRegExp("^[\...
分类:
其他好文 时间:
2014-07-30 23:51:55
阅读次数:
537
//check and add data foreach( $excel_data_format as $fomart_k =>$fomart_v ){ //校验sub title ...
分类:
其他好文 时间:
2014-07-30 23:39:15
阅读次数:
459
假设repository的名字叫hello-world:1.创建一个新的repository:先在github上创建并写好相关名字,描述。$cd ~/hello-world //到hello-world目录$git init //初始化$git add . ...
分类:
其他好文 时间:
2014-07-30 23:37:15
阅读次数:
264