码迷,mamicode.com
首页 >  
搜索关键字:enter the dragon    ( 10537个结果
试验一,04彭得源
#include#includemain(){ char a[10]="help"; char b[10]="quit"; char c[10]; while(1){ printf("please enter the command: "); ...
分类:其他好文   时间:2015-04-06 23:03:49    阅读次数:213
排序的一些方法(冒泡排序)
#include void bubble_sort(long [], long);int main(){ long array[100], n, c, d, swap; printf("Enter number of elements\n"); scanf("%ld", &n); print...
分类:编程语言   时间:2015-04-06 15:41:42    阅读次数:135
git解决一个电脑多用户情况(win7)
首先:在输入ssh-keygen -t rsa -C "注册邮箱"后不要急着按enter,此时输入秘钥对的文件名,不要跟默认文件重名(默认的是id_rsa)划红线的地方就是新的文件名,切记不要急着按enter,第一次按enter是直接默认生成秘钥对的!!!然后:找到你的.ssh文件夹下的config...
分类:Windows程序   时间:2015-04-05 23:19:03    阅读次数:245
jconsole线程面板中的阻塞总数和等待总数(转)
阻塞总数Blocked count is the total number of times that the thread blocked to enter or reenter a monitor. I.e. the number of times a thread has been in th...
分类:编程语言   时间:2015-04-05 18:41:26    阅读次数:2747
Sublime Package Control 安装
Enter ctrl+` shortcut or the View > Show Console Sublime Text 3 import urllib.request,os,hashlib; h = 'eb2297e1a458f27d836c04bb0cbaf282' + 'd0e7a3098092775ccb37ca9d6b2e4b7d'; pf = 'Package...
分类:其他好文   时间:2015-04-05 09:11:05    阅读次数:158
如何将word中上下两行文字对齐?
一.问题来源及描述 本科毕设的时候积累的问题,整理如下。 红头文件下面的署名,上下要对齐。二.解决办法 经验证,第一次拉标尺要把标尺放在第一行的光标处,为了换行后,再次enter,tab后到与上一行对齐的位置。
分类:其他好文   时间:2015-04-04 21:13:40    阅读次数:394
为vim增加目录浏览插件
NERDTree 是vim的目录浏览插件,使用该插件,可以在vim窗口的一侧浏览目录,使用hjkl浏览目录,用Enter键打开或关闭目录,打开文件。下面来讲述安装方法。 使用该网页进入NERDTree的github主页:https://github.com/scrooloose/nerdtree 该页面提供的命令:cd ~/.vim/bundle && git clone https://gi...
分类:系统相关   时间:2015-04-04 18:27:21    阅读次数:251
js(484个实例)学习03
按某个键(如enter)调用按钮(登录) 有些情况,为了方便用户操作,在登录邮箱或者用户后台时,如果用户输入用户名 和密码,按enter时,会自动 调用登录按钮 --> -----------------------------------------...
分类:Web程序   时间:2015-04-04 15:05:30    阅读次数:139
3个数比较大小输出最大值,为什么这个不对呢?求大神啊
#include void mian(){ int a,b,c,max; printf("Please enter a,b,c:"); scanf("%d%d%d",&a,&b,&c); if(a>b)max=a; else max=b; if(max>c)max=c; return(max); p...
分类:其他好文   时间:2015-04-03 17:04:09    阅读次数:130
Linux下C语言操作数据库
MySQL是Linux系统下广泛使用的开源免费数据库,是Linux应用程序数据存储的首选。 在Ubuntu系统下安装MySQL,可以在终端提示符中运行下列命令: $sudo apt-get install mysql-server mysql-client 一旦安装完成,MySQL服务器应该自动启动,默认的MySQL安装后用户为root,安装过程中会提示你enter password,这个密...
分类:数据库   时间:2015-04-03 15:22:56    阅读次数:166
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!