CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - continue

搜索资源列表

  1. circlebuffer.zip

    0下载:
  2. 循环缓冲区是一个非常常用的数据存储结构,已经被广泛地用于连续、流数据的存储和通信应用中。对于循环缓冲区,传统的操作方法是开辟一块连续的存储区,不断地写入数据,当写入到存储区的末尾的时候,再从存储区的首部再开始写入数据,由此不断地重复下去构成了循环缓冲区。偶曾经写过很多循环缓冲区,也看过很多人编写的循环缓冲区,但是拜读Simon Cooke先生的文章────“两段式”循环缓冲区,Cycle of the buffer zone is a very commonly used in data st
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:6.41kb
    • 提供者:anty
  1. Josephus

    0下载:
  2. Josephus问题:一群小孩围成一圈,任意假定一个数m,从第一个小孩起,顺时针方向数,每数到第m个小孩是,该小孩便离开。小孩不断离开,圈子不断缩小。最后,剩下的一个小孩便是胜利者。究竟胜利的是第几个小孩呢? 提示:用循环链表解答,编写程序link.h实现循环的链表类,由插入与删除等基本操作。 -Josephus problem: a group of kids form a circle, any assumption that a number of m, starting from
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-03
    • 文件大小:1.36kb
    • 提供者:月月
  1. MyFtp

    0下载:
  2. VC++上传下载,FTP客户端源代码,功能不算太多,不过实现的FTP的基本功能,设置服务器参数后,可连接FTP服务器,进行文件上传或下载,大家可在此基础上继续扩展,核心模块可参考。-VC++ uploading and downloading, FTP client source code, functionality is not too much, but to achieve the basic functions of FTP, set the server parameters, ca
  3. 所属分类:Other systems

    • 发布日期:2017-03-31
    • 文件大小:31.48kb
    • 提供者:胡杨
  1. 7_12

    0下载:
  2. 在窗口中显示一个球,该球以与水平成45度夹角作直线运动,当遇到边界时,反弹回来,仍与水平成45度角继续运动。-In the window of a ball, the ball with the level of 45 degrees angle for linear motion, when faced with the border, the rebound came back, still with the level of 45-degree angle to continue to c
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:8.41kb
    • 提供者:zhenghujiang
  1. StringIndex

    1下载:
  2. 设有两个字符串s和t,首先将s1与t1进行比较,直到s的某一个字符si和ti相同, 再将它们之后的字符进行比较,若也相同,则如此继续往下比较,当s的某一个字符si与t的字符tj不同时,则s返回到本趟开始字符的下一个字符,即si-j+2,t返回到t1,继续开始下一趟的比较,重复上述过程。若t中的字符全部比较完,则说明本趟匹配成功,本趟的起始位置是i-j+1,否则,匹配失败。 -There are two strings s and t, first s1 and t1 compare s
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-23
    • 文件大小:6.89kb
    • 提供者:丁子
  1. zsxm3.1.1

    0下载:
  2. 2008-11-24日更新 升级版本号为v3.1.0 1、解决中文帐号登陆乱码问题 2、解决自动运输和特殊功能有时候弹出继续按钮的问题 3、修正注册系统、可以通过逗号分割同时注册多个注册码 4、增加电玩巴士服务器-2008-11-24 updated version number to upgrade to v3.1.01, landing garbled account to resolve the issue of Chinese 2, solv
  3. 所属分类:Other systems

    • 发布日期:2017-05-12
    • 文件大小:2.46mb
    • 提供者:david
  1. jisuanqi

    0下载:
  2. 1. 输入caculator,程序开始执行,继续输入3*4+5,回车后输出17,继续下一个计算或Ctrl+C退出。 2. 输入caculator 3*4+5,程序执行输出结果17。 3. 输入caculator 3*4+5 33,程序执行输出结果error: too many arguments。 -1. Enter caculator, the procedure started, continue to enter the 3* 4+ 5, enter 17 afte
  3. 所属分类:Other systems

    • 发布日期:2017-03-31
    • 文件大小:1.39kb
    • 提供者:lost
  1. tetrix

    0下载:
  2. QT 俄罗斯方块 有新功能的话,可以继续添加-QT Tetris new feature, you can continue to add
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:93.82kb
    • 提供者:张三
  1. virtualmemory

    0下载:
  2. 虚拟仪器的相关文章一起分享,谢谢版主啊! 继续努力-Virtual Instruments related articles to share, thank you moderator ah! To continue its efforts to
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:483.38kb
    • 提供者:xuhao
  1. continue-and-break

    0下载:
  2. 压缩包含2部分,一部分是代码,基于vc++6.0,另一部分是word文档。介绍了一下关于break和continue的用法,尤其是在for循环中的用法,虽然大家都知道这2个语句,但是在具体运用过程中,还有的时候意识不到,其实这2个在编写代码过程中是非常方便的。-Compression contains 2 parts, is the code, based on vc++ 6.0, the other part is the word document. Introduced about the
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-03
    • 文件大小:14.12kb
    • 提供者:ivan
  1. C_1

    0下载:
  2. 是目前我看到的最通俗易懂的教程,先看一下,如果觉得好,我可以继续上传-I have seen is the most user-friendly tutorial, look at you, if they feel good, I can continue to upload
  3. 所属分类:Other systems

    • 发布日期:2017-05-23
    • 文件大小:6.87mb
    • 提供者:wjh91
  1. C_2

    0下载:
  2. 是目前我看到的最通俗易懂的教程,先看一下,如果觉得好,我可以继续上传-I have seen is the most user-friendly tutorial, look at you, if they feel good, I can continue to upload
  3. 所属分类:Other systems

    • 发布日期:2017-05-30
    • 文件大小:11.23mb
    • 提供者:wjh91
  1. C_3

    0下载:
  2. 是目前我看到的最通俗易懂的教程,先看一下,如果觉得好,我可以继续上传-I have seen is the most user-friendly tutorial, look at you, if they feel good, I can continue to upload
  3. 所属分类:Other systems

    • 发布日期:2017-05-29
    • 文件大小:10.87mb
    • 提供者:wjh91
  1. jsq

    0下载:
  2. 非常简单的计算器,供新手参考学习,继续开发更新的工具-Very simple calculator, a reference for novices to learn, continue to develop newer tools
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-29
    • 文件大小:36.31kb
    • 提供者:赵赵
  1. hoodle

    0下载:
  2. 一款使用VC开发实现的弹珠台小游戏, 还不是很完善, 希望高手继续完善, 当然非本人原创, 不过还是认为值得分享.-Realize a development of the use of VC Pinball game, is not very perfect, I hope you continue to improve, of course, my non-original, but still consider worth sharing.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:386.49kb
    • 提供者:wailisiji007
  1. xxcs

    0下载:
  2. 局域网通讯工具,反编可得到源码,可继续添加功能-LAN communications tools, anti made available source code, you may continue to add functionality
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-28
    • 文件大小:36.93kb
    • 提供者:zhangj
  1. continue-break-switch-while

    0下载:
  2. 此代码主要从各种方面描述了continue和break在while和for循环中的用法区别,很适合初学者了解continue和break的作用机理,了解while和for循环的实现方式。-This code describes the main aspects from a variety of continue and break in while and for loops usage distinction, it is suitable for beginners to understa
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:933byte
    • 提供者:刘争辉
  1. example-of-continue

    0下载:
  2. 目标:运用continue输出100——400以内小于200的能被3整除的整数-Objectives: to use the continue output 100 less than 400 less than 200 can be an integer divisible by 3
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-29
    • 文件大小:9.62kb
    • 提供者:kaychou
  1. 实验八程序设计综合编程练习

    0下载:
  2. 求输入的十个整数中正数的和及平均值并且记录所输入的正数及负数的个数,要求使用continue。(To find the sum and average of the positive and average values of the ten integers entered, and record the number of positive and negative Numbers entered.)
  3. 所属分类:其他

    • 发布日期:2018-01-01
    • 文件大小:3kb
    • 提供者:撒的飞
  1. test

    0下载:
  2. continue功能验证,WINTC小程序(Continue function verification, WINTC applet)
  3. 所属分类:其他

    • 发布日期:2018-01-07
    • 文件大小:7kb
    • 提供者:默默学习
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com