码迷,mamicode.com
首页 >  
搜索关键字:do it    ( 12356个结果
js如何获取另一个页面传递过来的值?
vart="<%=request.getParameter("do")%>"; alert(t);
分类:Web程序   时间:2014-05-27 03:54:38    阅读次数:209
How do sequencing errors affect de Bruijn graphs?
意外发现的文章,等忙完这阵子,准备全都翻译出来! ============================================== 原作者文章链接:http://www.homolog.us/blogs/blog/2011/08/01/how-do-sequencing-errors-a...
分类:其他好文   时间:2014-05-23 09:18:54    阅读次数:276
[连载]Java程序设计(02)---任务驱动方式:个人所得税计算器
讲解了Java中的分支和循环结构,包括用if...else...和switch...case...default构造分支结构以及用whie、do...while...和for构造循环结构。...
分类:编程语言   时间:2014-05-22 10:06:36    阅读次数:349
System V实现的一个消息回射服务器与客户端
echocli.c #include #include #include #include #include #include #include #include #define ERR_EXIT(m)         do         {                 perror(m);                 e...
分类:其他好文   时间:2014-05-22 08:27:45    阅读次数:212
C经典之13-Asking的实时监听---ShinePans
#include #include #include //system(); 这个指令需要用到此头文件 #include //toupper要用到 #include //在内存管理时用到的头文件 void main() { char letter; // Letter typed by the user printf("Do you want to continue? (...
分类:其他好文   时间:2014-05-22 06:18:00    阅读次数:340
算法教程(2)zz
In the previous section we saw how to use vectors to solve geometry problems. Now we are going to learn how to use some basic linear algebra to do lin...
分类:其他好文   时间:2014-05-22 04:17:01    阅读次数:549
poj 3735 Training little cats(矩阵快速幂)
Description Facer's pet cat just gave birth to a brood of little cats. Having considered the health of those lovely cats, Facer decides to make the cats to do some exercises. Facer has well designe...
分类:其他好文   时间:2014-05-21 10:36:57    阅读次数:297
hdu 1114 Piggy-Bank -- 完全背包
Piggy-Bank Problem Description Before ACM can do anything, a budget must be prepared and the necessary financial support obtained. The main income for this action comes from Irreversibly Bound M...
分类:其他好文   时间:2014-05-21 10:17:35    阅读次数:289
Leetcode:Reverse Linked List II 单链表区间范围内逆置
Reverse a linked list from position m to n. Do it in-place and in one-pass. For example: Given 1->2->3->4->5->NULL, m = 2 and n = 4, return 1->4->3->2->5->NULL. Note: Given m, n satisfy the fol...
分类:其他好文   时间:2014-05-21 07:18:02    阅读次数:301
编程题:用do..while语句实现,求1+2+3+...+100的结果。
编程题:用do..while语句实现,求1+2+3+...+100的结果。#include<stdio.h>voidmain(){ints,n;s=0;n=1;do{s=s+n; n=n+1;}while(n<=100);printf("1+2+3+...+100=%d\n",s);}算法解析图与流程图:do...while语句运行结果:总结:do...while至少执行一次。
分类:其他好文   时间:2014-05-20 19:34:05    阅读次数:294
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!