虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Out

  • Josephu算法 建立一个01.in的文件

    Josephu算法 建立一个01.in的文件,输入N行数据(m,n),m为总人数,第n个人出列 输出结果会保存在自动生成一个01.Out的文件中

    标签: Josephu 01 in 算法

    上传时间: 2016-11-25

    上传用户:jiahao131

  • 51单片连tcs230的源程序

    51单片连tcs230的源程序,绝对原创,可以记忆颜色。 #define uchar unsigned char #include <reg52.h> #include<math.h> sbit S0=P1^7 sbit S1=P1^0 //端口定义 sbit S2=P1^1 sbit S3=P1^2 sbit OE=P1^3 sbit Out=P3^4 //频率从TO口输入 sbit key0=P1^5 sbit LED=P1^6 sbit a=P3^0 sbit b=P3^1 uchar color //1:blue 2:green 3:red uchar T[4] //color timer uchar TH[4] uchar TL[4] uchar bizhi[4] void time1() interrupt 3 { TH[color]=TH0 TL[color]=TL0 T[color]=(TH[color]*0xff+TL[color]) TR0=0 //关定时器 TR1=0 TH1=0xB1 TL1=0xE0 //归0 TH0=0x00 TL0=0x00 //归0 }

    标签: tcs 230 源程序

    上传时间: 2016-11-26

    上传用户:秦莞尔w

  • This book is designed to teach you the best practices in developing Windows DNA applications. We ha

    This book is designed to teach you the best practices in developing Windows DNA applications. We have avoided making this book a primer on every technology associated with Windows DNA. If we had followed this course, this would be an encyclopedia set. Everyone has their favorite authors and books on the various technical subject areas. The market is full of books to teach you the basics, the how, this book tries to be different in that we pull Out the important points to teach you abOut the why. If you need training in a particular technology covered in this book, Sams has a number of 24-hour and 21-day books that cover a wide range of topics.

    标签: applications developing practices designed

    上传时间: 2016-11-27

    上传用户:yyq123456789

  • Inside the C++ Object Model Inside the C++ Object Model focuses on the underlying mechanisms that s

    Inside the C++ Object Model Inside the C++ Object Model focuses on the underlying mechanisms that support object-oriented programming within C++: constructor semantics, temporary generation, support for encapsulation, inheritance, and "the virtuals"-virtual functions and virtual inheritance. This book shows how your understanding the underlying implementation models can help you code more efficiently and with greater confidence. Lippman dispells the misinformation and myths abOut the overhead and complexity associated with C++, while pointing Out areas in which costs and trade offs, sometimes hidden, do exist. He then explains how the various implementation models arose, points Out areas in which they are likely to evolve, and why they are what they are. He covers the semantic implications of the C++ object model and how that model affects your programs.

    标签: Inside Object the Model

    上传时间: 2013-12-24

    上传用户:zhouli

  • BlackBerry Hacks will enhance your mobile computing with great tips and tricks. You ll learn that th

    BlackBerry Hacks will enhance your mobile computing with great tips and tricks. You ll learn that the BlackBerry is capable of things you never thought possible, and you ll learn how to make it an even better email and web workhorse: Get the most Out of the built-in applications Take control of email with filters, searches, and more Rev up your mobile gaming--whether you re an arcade addict or poker pro Browse the web, chat over IM, and keep up with news and weblogs Work with office documents, spell check your messages, and send faxes Become more secure, lock down your BlackBerry and stash secure information somewhere safe Manage and monitor the BlackBerry Enterprise Server (BES) and Mobile Data System (MDS) Create web sites that look great on a BlackBerry Develop and deploy BlackBerry applications

    标签: BlackBerry computing enhance mobile

    上传时间: 2016-12-07

    上传用户:GavinNeko

  • DSP6713实现的卷积算法程序。文件包是调试后的全部工程文件

    DSP6713实现的卷积算法程序。文件包是调试后的全部工程文件,包括下载文件Out和工程文件pjt

    标签: 6713 DSP 卷积 算法

    上传时间: 2013-12-02

    上传用户:rishian

  • Implement a phone book system for employees of a company. Your program will Output the following me

    Implement a phone book system for employees of a company. Your program will Output the following menu (1) Enter an employee and a phone pair to the system (2) Lookup an employee s phone number (3) Find Out who is/are the person(s) of a given number (4) How many people are currently in the system (5) Delete an employee from the system (6) Output all employees name‐phone pair (7) How many phone numbers total in the current system (8) Quit When

    标签: Implement employees following company

    上传时间: 2013-12-17

    上传用户:zhangliming420

  • 用C语言编的一个小解释器

    用C语言编的一个小解释器,可以执行C程序的!算是可以执行C程序的C程序吧! 选自最新C语言精华(第三版)Herbert Schildt著 A small interpreter arranges which with the C language, may carry Out the C procedure! Is may carry Out C the procedure C procedure! (Master) writes oh!

    标签: C语言

    上传时间: 2013-12-20

    上传用户:kelimu

  • The AVRcam source files were built using the WinAVR distribution (version 3.3.1 of GCC). I haven t

    The AVRcam source files were built using the WinAVR distribution (version 3.3.1 of GCC). I haven t tested other versions of GCC, but they should compile withOut too much difficulty. * The source files for the AVRcam had the author name and copyright information added back into them after the judging of the project, since it states in the competition rules that the author s name can not be present during their inspection. * The included source files are the ones that were submitted for the entry into the Circuit Cellar contest. I have continued to develop the AVRcam, and have added several new features (such as ignoring objects that aren t larger than a minimum size, removing tracked objects that overlap with each, and some general optimizations). If you are interested in the latest source, email me at john@jrobot.net * For more info abOut the AVRcam, check Out http://www.jrobot.net John Orlando August 20, 2004

    标签: distribution version AVRcam source

    上传时间: 2016-12-30

    上传用户:GavinNeko

  • 设有父子2个进程共享一个临界资源

    设有父子2个进程共享一个临界资源,每个进程循环进入该临界区3次:父进程每次进入临界区后显示“prnt in”,出临界区则显示“prnt Out”;子进程每次进入临界区后显示“chld in”出临界区则显示“chld Out”。观察运行结果,应该是一个进程出来后另一个才能进去。

    标签: 进程 资源

    上传时间: 2017-01-02

    上传用户:chfanjiang