Welcome![Sign In][Sign Up]
Location:
Search - 13.56

Search list

[Multimedia programtudou_56_fla

Description: 56网和土豆网的Flash播放器的.fla源文件
Platform: | Size: 60033 | Author: liaohaibo | Hits:

[Software Engineering15693

Description: 15693天线设计.rar是浪括了所有13.56高频率射频读卡芯片的天线设计部分,里面有天线参数自动计算公式,50欧姆天线设计方法等等... 非常好用的资料!开发射频必备
Platform: | Size: 3921167 | Author: jian | Hits:

[DocumentsMifare 1非接触IC卡技术说明

Description: " 非接触数据传输并提供能源(不需电池) " 工作距离:可达100mm (取决于天线尺寸结构) " 工作频率:13.56 MHz " 快速数据传输:106 kbit/s " 高度数据完整性保护:16 Bit CRC,奇偶校验,位编码,位计数 " 真正的防冲突 " 典型票务交易: < 100 ms (包括备份管理)
Platform: | Size: 319488 | Author: manyhappyreturn | Hits:

[OtherC++程序设计语言实验三

Description: 实验三:C++编程入门 一、实验内容 1. 类模版。 2. 运算符重载。 3. 友元。 4. 继承。 二、实验题目 1, 设计一个类SavingsAccount,定义一个静态数据成员记录存款的年利率(rate),该类的每个成员都包含一个私有的数据成员balance,表示该成员当前的存款数额。提供一个成员函数CalMonthlyInterest(),用以计算月利息(用balance乘以rate再除以12),并将这个月利息加入balance中。提供一个静态成员函数ModifyRate(),用以改变静态数据成员rate的值。定义两个不同的SavingsAccount对象saver1和saver2,当前存款数额balance分别为2000.00和3000.00。首先将rate设置为3%,计算每个存款人的月息并打印新的结果,然后将rate设置为4%,再次计算每个存款人的月息并打印新的结果。 2, 设计一个学生类student,包括学生学号、姓名、成绩;设计一个友元函数,比较某两个学生成绩的高低;读入一个文本文件(格式如示例studengt.txt,每行的学号、姓名、成绩之间用四个空格隔开)中所有学生的学号、姓名、成绩,输出最高成绩和最低成绩的学生信息(学号、姓名、成绩)。 3, 阅读下面例子,将题中的Time类声明为Data类的友元类,通过Time类中的display函数引用Data类的私有数据,输出年、月、日和时、分、秒。 #include <iostream> using namespace std; class Date; //对Date类的提前引用声明 class Time //定义Time类 { public: Time(int,int,int); void display(Date &); //display是成员函数,形参是Date类对象的引用 private: int hour; int minute; int sec; }; class Date //声明Date类 { public: Date(int,int,int); friend void Time∷display(Date &); //声明Time中的display函数为友元成员函数 private: int month; int day; int year; }; Time∷Time(int h,int m,int s) //类Time的构造函数 { hour=h; minute=m; sec=s; } void Time∷display(Date &d) //display的作用是输出年、月、日和时、分、秒 { cout<<d.month<<″/″<<d.day<<″/″<<d.year<<endl; //引用Date类对象中的私有数据 cout<<hour<<″:″<<minute<<″:″<<sec<<endl; //引用本类对象中的私有数据 } Date∷Date(int m,int d,int y) //类Date的构造函数 { month=m; day=d; year=y; } int main( ) { Time t1(10,13,56); //定义Time类对象t1 Date d1(12,25,2004); //定义Date类对象d1 t1.display(d1); //调用t1中的display函数,实参是Date类对象d1 return 0; } 4, 将下面程序改为在类模板外定义各成员函数: #include <iostream> using namespace std; template<class numtype> //定义类模板 class Compare { public: Compare(numtype a,numtype b) { x=a;y=b; } numtype max( ) { return (x>y)?x:y; } numtype min( ) { return (x<y)?x:y; } private: numtype x,y; }; int main( ) { Compare<int> cmp1(3,7); //定义对象cmp1,用于两个整数的比较 cout<<cmp1.max( )<<″ is the Maximum of two integer numbers.″<<endl; cout<<cmp1.min( )<<″ is the Minimum of two integer numbers.″<<endl<<endl; Compare<float> cmp2(45.78,93.6); //定义对象cmp2,用于两个浮点数的比较 cout<<cmp2.max( )<<″ is the Maximum of two float numbers.″<<endl; cout<<cmp2.min( )<<″ is the Minimum of two float numbers.″<<endl<<endl; Compare<char> cmp3(′a′,′A′); //定义对象cmp3,用于两个字符的比较 cout<<cmp3.max( )<<″ is the Maximum of two characters.″<<endl; cout<<cmp3.min( )<<″ is the Minimum of two characters.″<<endl; return 0; } 5, 有两个矩阵a和b,均为2行3列,求两个矩阵的和。重载运算符“+”使之用于矩阵相加。如:c=a+b。重载插入运算符“<<”和流提取运算符“>>”,使之能用于该矩阵的输入和输出。 6, 利用类继承分别完成一个学生类、一个大学生类、一个本科生类,本科生类中包括了一个学生作为他的班长。在创建一个本科生对象时赋予他的全部信息,输出该本科生对象的全部信息。 7, 利用c++继承、多态虚函数、构造函数完成以下程序:设计人、老师、学生、大学生、研究生、大四学生等类、其主要属性自己定义,要求包括以下方法: 1) 构造函数,创建对象的主要信息 2) Display,显示每种类对象的主要信息 此外,要求每个类包含一个生日对象,其类型为Birthday类,学生类应该包含一个班主任对象,其类型为老师类。 三、实验要求  将程序源代码压缩后提交至学院FTP上对应实验和班级的目录中。  作业命名方式为:“学号姓名.rar”。  作业提交时间:下次实验课前提交。
Platform: | Size: 1255695 | Author: zhuchao0731@163.com | Hits:

[WEB Codemakepic

Description: 56录制程式,很不错,与大家分享!湖南长沙中南大学信息科学与工程学院-56 recorded programs, quite well, and share with you! Changsha, Hunan Zhongnan University of Information Science and Engineering College
Platform: | Size: 594944 | Author: 龙建 | Hits:

[Program docSL030UserManual

Description:
Platform: | Size: 116736 | Author: 陈波 | Hits:

[OtherISO_IEC18000-3_rev2

Description: Information technology — Radio frequency identification for item management — Part 3: Parameters for air interface communications at 13,56 MHz-Information technology- Radio frequency identification for item management-Part 3: Parameters for air interface communications at 13,56 MHz
Platform: | Size: 1079296 | Author: barla | Hits:

[Video Capture56comluzhi(2)

Description: 56 录制源码 flv fms flash fla-56 recording source flv fms flash fla
Platform: | Size: 241664 | Author: OUOU | Hits:

[Embeded-SCM Develop11D

Description: 射频读写模块是采用最新Mifare技术的微型嵌入式非接触式IC卡读写模块。内嵌ISO14443 Type A协议解释器,并具有射频驱动及接收功能,可以简单实现对MifareOne等卡片的读写操作,读写距离最大可达100mm(与卡片及天线设计有关)-RF read and write Mifare module is using the latest technology, micro-embedded non-contact IC card reader module. ISO14443 Type A protocol embedded interpreter with RF drive and receive functions can be simple to realize MifareOne operations such as card reader, read and write distance up to 100mm (with the card and antenna design-related)
Platform: | Size: 2048 | Author: 汪长海 | Hits:

[SCMTI_RF_select

Description: Ti 公司低功耗RF芯片选型资料.其中有13.56-27MHz,300-1000MHz ,2.4GHz等等芯片选型参考-Ti low-power RF chip companies Selection information. Among them, 13.56-27MHz ,300-1000MHz, 2.4GHz chip, etc. Selection of reference
Platform: | Size: 4684800 | Author: xiaole | Hits:

[CommunicationMD5

Description: rfid 13.56 comport MD5 source code
Platform: | Size: 91136 | Author: Chou | Hits:

[Other56

Description: 关于vc++的视频,介绍如下:有两个数字如23,第一个2表示第2章,第二个3表示第三个视频,用flash player 播放即可。-About vc++ The video, introduced as follows: There are two figures, such as 23, No. 2, said a Chapter 2, the second 3 that the third video, players can use flash player.
Platform: | Size: 4766720 | Author: 成长 | Hits:

[SCMmultiThread

Description: VB多线程问题,这个线程只响应一次,然后整个VB都死了楼主wShineboy(西门吹牛)2005-06-25 13:56:50 在 VB / API 提问 做了个单片机数据实时监控处理的软件,从仪器接收测试数据并即时显示、绘制趋势图。测试结束后保存所有取得的数据到DB。-API lpThreadAttributes
Platform: | Size: 18432 | Author: 燕子 | Hits:

[SCMtrf796x_firmwaredescription

Description: The datasheet presents the firmware description of the RFID Reader based on TRF 7960 IC. It operates in 13.56 MHz frequency. The firmware description can be taken as a reference point for any RFID Reader. There are easy to understand block diagrams which shows the way in RFID Firmware development. TRF 7961 is a RFID transciever IC used for RFID application such as Secure Access Control, Product Authentication and Contactless Payment Systems. The RFID Reader IC when interfaced with a suitable controller and a serial to USB converter IC can make up a good RFID Reader Hardware System
Platform: | Size: 250880 | Author: fathah | Hits:

[FlashMXfenghuang

Description: 56网和土豆网的Flash播放器的.fla源文件-56 networks and potatoes network Flash player. Fla source file-源码56网和土豆网的Flash播放器的.fla源文件-56 networks and potatoes network Flash player. Fla source file
Platform: | Size: 25600 | Author: 范伟 | Hits:

[SQL ServerVisual-CPP-PSQL-Server

Description: VisualC++SQL Server数据库应用实例完全解析-VisualC++ SQL Server database application instance fully resolve
Platform: | Size: 15070208 | Author: 刘滕飞 | Hits:

[Linux-UnixTRF7960TBPMSP430F5438A-Experimenter-Board-SPI-wit

Description: TRF7960 for linux. This is a reader RFID for detect tag to 13.56 MHz. TRF7960TB+MSP430F5438A Experiment.
Platform: | Size: 453632 | Author: charlie | Hits:

[FlashMX56

Description: 这是个虫子移动的动画,大家可以按着方向键控制虫子的移动-This is a bug moving animation, we can according to the arrow keys to control the movement of insects
Platform: | Size: 8192 | Author: aaaaa | Hits:

[FlashMX56

Description: 这是一个flash源文件,效果很好,测试平台为flash 8.0(如果提示问题请选择合适的版本试试),代码的效果是:灯-This is a flash source file, the effect is good, the test platform for flash 8.0 (if the question, please select the appropriate version to try), the effect of the code is: Light
Platform: | Size: 84992 | Author: xiaomingw | Hits:

[RFID2

Description: RFID中文协议,第一部分:参考结构和被标准化的参数的定义,第二部分:低于135 kHz 频段短程通讯空间接口的参数,第三部分:13.56 MHz 短程通讯空间接口的参数,第四部分:2.45 GHz 短程通讯空间接口的参数-Chinese RFID Protocol, Part I: Reference architecture and definition of parameters to be standardized, Part II: short-range communications below 135 kHz band parameters of the interface space, the third part: 13.56 MHz short-range communication interface parameter space, the fourth part: 2.45 GHz short-range communication interface parameter space····
Platform: | Size: 1220608 | Author: f | Hits:
« 1 2 34 5 6 »

CodeBus www.codebus.net