码迷,mamicode.com
首页 >  
搜索关键字:print    ( 43532个结果
sed use case: Filter without editing
if we want to filter with sed pattern and just print the filtered lines without any further editing , we can do it like thisls -a1 ~ | sed -ne "/^\./p...
分类:其他好文   时间:2014-05-28 22:58:56    阅读次数:294
java web 程序---jsp连接mysql数据库的实例基础+表格显示
JSP连接mysql数据库 "); out.print("性别:姓名:密码:"); while(rs.next()){ out.print(""); out.print(""+rs.getString("sex")+""); out.print(...
分类:数据库   时间:2014-05-26 19:13:38    阅读次数:350
python类方法和静态方法
C++的静态方法是用static关键字,python j是没用static的。python中实现静态方法和类方法都是依赖于python的修饰器来实现的。classMyClass:defmethod(self):print("method")@staticmethoddefstaticMethod()...
分类:编程语言   时间:2014-05-26 18:16:42    阅读次数:282
pywebkitgtk安装出现的问题
configure 文件中 print sys.prefix 等不能支持python3的原因 根据http://blog.csdn.net/jklfjsdj79hiofo/article/details/26607797 在configure文件去查找 该上面的语句...
分类:Web程序   时间:2014-05-26 04:42:25    阅读次数:278
php排序方法之快速排序
$arr = array(3,55,45,2,67,76,6.7,-65,85,4);function quickSort($arr){ if (count($arr) ";print_r($new_arr);exit;
分类:Web程序   时间:2014-05-25 19:13:17    阅读次数:233
php排序方法之选择排序
//选择排序法$arr = array(3,55,45,2,67,76,6.7,-65,85,4);function selectSort($arr){ for ( $i=0; $i";print_r($res);exit;
分类:Web程序   时间:2014-05-25 19:10:18    阅读次数:202
Python重写C语言程序100例--Part11
''' 【程序91】 题目:时间函数举例1 1.程序分析: 2.程序源代码: ''' if __name__ == '__main__': import time print time.ctime(time.time()) print time.asctime(time.localtime(time.time())) print time.asctime(time...
分类:编程语言   时间:2014-05-25 18:15:41    阅读次数:311
Python日记本
1 #-*-coding:UTF-8 -*- 2 import datetime,time 3 import os 4 print u"=================尊敬的梦猩魂,欢迎使用记事本=================="; 5 con=True 6 while con: 7 ...
分类:编程语言   时间:2014-05-25 08:46:15    阅读次数:286
看书小记9(《C专家编程》)
哈希表简单实现,练个手 #include "stdafx.h" #include using namespace std; #define HASHSIZE 12 typedef struct HashTable { int *elem; int count; }HashTable; int m = 0; void Print(HashTable* ...
分类:其他好文   时间:2014-05-25 07:02:06    阅读次数:169
趣味编程:静夜思(Java8版)
import java.util.stream.*; class KV{ String ch; int id; } public class Test { private static void print(String text, int offset) { IntStream.range(0, text.length()) .mapToObj(i -> new KV(){{c...
分类:编程语言   时间:2014-05-24 22:09:03    阅读次数:363
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!