码迷,mamicode.com
首页 >  
搜索关键字:hello word    ( 34862个结果
hello cnblogs!
#include int main(void){ printf("hello cnblogs!\n"); return 0;}
分类:其他好文   时间:2014-05-18 19:50:02    阅读次数:245
读取硬盘序列号
#pragma hdrstop #pragma argsused #include #include #include #include "hdd.h" const WORD IDE_ATAPI_IDENTIFY = 0xA1; // 读取ATAPI设备的命令 const WORD IDE_ATA_IDENTIFY = 0xEC; // 读取ATA设备的命令 const in...
分类:其他好文   时间:2014-05-18 14:36:24    阅读次数:430
jQuery -> bind / live / delegate 的终结者 - on
最近在学习jQuery,使用得是最新版本的1.11.1。照着书本敲了如下代码,却发现无论如何也跑不起来。 html hello world js $(document).ready(function() { $('.box').live('click', function() { $(this).clone().appendTo('.container'); }); }); 原...
分类:Web程序   时间:2014-05-18 08:56:21    阅读次数:434
LeetCode: Substring with Concatenation of All Words [029]
【题目】 You are given a string, S, and a list of words, L, that are all of the same length. Find all starting indices of substring(s) in S that is a concatenation of each word in L exactly once and without any intervening characters. For example, given: S:...
分类:其他好文   时间:2014-05-18 08:31:48    阅读次数:228
LeetCode:Reverse Words in a String
题目: Given an input string, reverse the string word by word. For example, Given s = "the sky is blue", return "blue is sky the". Clarification: What constitutes a word? A sequence of non-spa...
分类:其他好文   时间:2014-05-18 04:12:07    阅读次数:198
站在巨人的肩膀上——人事项目数据导出word
最近在做人事项目中的,数据导出word,具体的说就是从web客户端页面获取信息,添加到信函模板中,再导出为word文档。总结一下,学会了两种方法,1.通过将word模板转换为html文件,输出word。2.利用第三方组件Aspose.Words操作word模板,输出word。...
分类:其他好文   时间:2014-05-18 03:44:24    阅读次数:257
javascript 循环显示<hn>字体
使用匿名函数 上面这种方法是使用javascript的匿名函数进行显示,也可以直接循环显示(下面) 1 2 3 4 hello world 5 14 15 16 17 18 19 20
分类:编程语言   时间:2014-05-18 02:38:58    阅读次数:290
java4android (基本概念)
1.环境变量的配置:path键 值:bin文件夹的位置 classpath键 值:.2.第一个HelloWorld:public class Hello{ public static void main(String args[]){ System.out.print("Hello World!"....
分类:移动开发   时间:2014-05-17 21:41:13    阅读次数:460
汇编 Hello World
section .textglobal _start ;must be declared for linker (ld)_start: ;tel...
分类:其他好文   时间:2014-05-17 20:52:07    阅读次数:180
word 2010自定义快捷键提高工作效率
经常使用word处理文档, 做笔记的时候会把word文档框缩小,以便同时看pdf同时记录笔记,但是缩小的word框不能把所有的菜单项显示出来,我比较常用那个插入边框下面的那个横线来做分割符,但是缩小了word之后那个菜单项显示不出来,每次要用的时候都要先最大化word,操作完了之后再恢复原来的大小来...
分类:其他好文   时间:2014-05-17 20:40:38    阅读次数:368
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!