码迷,mamicode.com
首页 >  
搜索关键字:do while循环    ( 14864个结果
What should I do about “302 Found” exceptions when downloading with Indy?
Set theTIdHTTP.HandleRedirectsproperty to True. It is False by default.function FetchUrl(const url: string): string; var idhttp : TIdHTTP; begin id...
分类:其他好文   时间:2014-06-12 14:53:09    阅读次数:286
dispatch_group_async
- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. dispatch_queue_t queue = dispatch_get_global...
分类:其他好文   时间:2014-06-12 13:02:38    阅读次数:225
Leetcode:Reverse Linked List II 反转链表区间
Reverse Linked List IIReverse a linked list from positionmton. Do it in-place and in one-pass.For example:Given 1->2->3->4->5->NULL, m= 2 andn= 4,retu...
分类:其他好文   时间:2014-06-12 07:03:54    阅读次数:308
shell脚本小练习--域名解析
这是一个群里别人让我写的一个小脚本,当做练习发到这里,功能很简单,从一个文件里面提取域名,之后利用nslookup命令对域名进行解析,再按照固定的格式输出到一个新的文件里面(输出规格是为address=/域名/IP),脚本内容如下:#!/bin/bash fornamein`cat/root/dns.File`;do n..
分类:其他好文   时间:2014-06-10 22:35:33    阅读次数:355
IOS学习笔记---C语言第三天
循环结构 : while循环 do...while循环(几乎不用) for循环(使用最多)特点:在给定的条件成立时,反复执行某程序段,直到条件不成立为止。给定的条件为循环条件,反复执行的程序段位循环体。一、while循环while(条件表达式){ 循环语句;}#import int mai...
分类:移动开发   时间:2014-06-10 21:36:59    阅读次数:346
字符串查找匹配
vector split(const string& src, const string& separator){vectordest;string str = src;string substring;string::size_type start = 0, index;do{index = st...
分类:其他好文   时间:2014-06-10 20:35:36    阅读次数:238
WEP cracking
Our information -Wireless interface:wlan0Monitor mode interface: mon0Spoofed MAC –00:11:22:33:44:55? DO NOT EVER USE THIS AS YOUR SPOOFED MAC ADDRESS ...
分类:其他好文   时间:2014-06-10 16:55:13    阅读次数:300
[leetcode]Palindrome Number @ Python
原题地址:https://oj.leetcode.com/problems/palindrome-number/题意:Determine whether an integer is a palindrome. Do this without extra space.click to show spo...
分类:编程语言   时间:2014-06-10 16:06:52    阅读次数:286
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!