码迷,mamicode.com
首页 >  
搜索关键字:please    ( 3193个结果
三个数由小到大排序
1 #include 2 3 int main(void) 4 { 5 int a,b,c; 6 int temp; 7 printf("please input a b c\n"); 8 scanf("%d %d %d",&a,&b,&c); 9 10 if(a>b)11 {12 te...
分类:其他好文   时间:2014-07-22 23:00:52    阅读次数:353
批处理判断是否特殊字符的实现代码(转自:www.jbxue.com)
分享一个批处理脚本,判断是不是特殊字符。原文地址:http://www.jbxue.com/article/17770.html用于判断输入的一个字符是否为"&^>中的符号。注意,匹配字符串中的空格不可省略!批处理代码:@echo offset Input=S set /p Input=Please...
分类:其他好文   时间:2014-07-22 23:00:34    阅读次数:394
判断是否是闰年
计算闰年的方法:如果某年能被4整除但不能被100整除,或者该年能被400整除则为闰年。(year%4==0&&year%100!=0)||year%400==0 1 #include 2 3 int main(void) 4 { 5 int year; 6 printf("please in...
分类:其他好文   时间:2014-07-22 23:00:32    阅读次数:247
ARM-Linux开机自启动设置-ok6410开发板
要在开发板上的Linux开机启动自己的程序,想着简单,却改了很久,绕了一圈下来确实很简单,只是自己一开始太过迂腐吧! 如果不想看完全文,这一段应该就够了,从我使用的开发板的角度讲,一般只要在/etc/init.d/rcS中加入你的程序或者脚本命令就可以实现开机自动运行;想在超级终端输入回车,登录后执行,则可以在/etc/profile中加入命令;如果想去掉每次开机完后的“Please press...
分类:系统相关   时间:2014-05-05 13:04:14    阅读次数:525
笨方法学python(5)加分题
这篇对应的是习题16,读写文件 # -*- coding: utf-8 -*- #对文件更多操作复制A文件的内容到B文件 #from sys import argv from os.path import exists prompt = "> " from_file = raw_input("please input the filename where you want to copy...
分类:编程语言   时间:2014-05-05 12:54:02    阅读次数:402
lvm-snapshot:基于LVM快照的备份
续lvm-snapshot:基于LVM快照的备份之准备工作Attention,Please!重头戏开始啦3.基于LVM快照的备份lvm-snapshot:基于LVM快照的备份(1)事务日志跟数据文件必须在同一个卷上;(2)创建快照卷之前,要请求MySQL的全局锁;在快照创建完成之后释放锁;(3)请求全局锁完成之后,做一次..
分类:其他好文   时间:2014-05-05 12:14:16    阅读次数:452
VdcEye manager
VdcEye manager first version has been released, please read below document for  using....
分类:其他好文   时间:2014-05-03 16:35:30    阅读次数:397
Out of office 模板
I am out of the office until 0X/0X/201X.I will be checking my email regularly. Please leave a complete message for me and I will respond immediately w...
分类:其他好文   时间:2014-05-02 11:14:21    阅读次数:2686
十进制转二进制
十进制转二进制的递归实现算法: 1 #include 2 void dectobi(int a); 3 4 int main() 5 { 6 int i; 7 printf("please input a decimical number\n"); 8 scanf("%...
分类:其他好文   时间:2014-05-01 19:19:33    阅读次数:397
leetcode day6 -- String to Integer (atoi) && Best Time to Buy and Sell Stock I II III
1、 ?? String to Integer (atoi) Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yours...
分类:其他好文   时间:2014-04-29 13:22:22    阅读次数:341
3193条   上一页 1 ... 317 318 319 320 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!