搜索资源列表
C++程序设计语言实验三
- 实验三:C++编程入门 一、实验内容 1. 类模版。 2. 运算符重载。 3. 友元。 4. 继承。 二、实验题目 1, 设计一个类SavingsAccount,定义一个静态数据成员记录存款的年利率(rate),该类的每个成员都包含一个私有的数据成员balance,表示该成员当前的存款数额。提供一个成员函数CalMonthlyInterest(),用以计算月利息(用balance乘以rate再除以12),并将这个月利息加入balance中。提供一个静态成员函数ModifyRate(
TestWTLExcel
- 摆脱CreateDispatch函数调用出现的异常,运用另外一种思路即EXCEL命名空间来操作EXCEL表,-Function calls to get rid of CreateDispatch appear abnormal, the use of another idea that namespace to operate EXCEL EXCEL table,
xNameSpace
- 本文主要记录了x命名空间里的两大类(Attribute类和标记扩展类)主要的内容,根据情况去选择使用,想熟练的使用还需要一段时间的练习,主要难点在于记住各个功能的格式和使用场合。还有就是在理解x:Shared的时间花了一下功夫。如果有不足的地方,请大牛们指点。谢谢阅读-This paper records two categories (Attribute class x namespace markup extension class) the main content choose to u
Hanoi(gray)
- //使用gray code的解法 #include <iostream> #include <cmath> using namespace std #define ZERO 0 #define ONE 1 #define ODD 1 #define EVEN 0 #define RIGHT 1 #define LEFT 0 #define MAX 10-//Gray code to use the method#
ArcMap
- 仿照ArcMap using System using System.Collections.Generic using System.ComponentModel using System.Data using System.Drawing using System.Text using System.Windows.Forms using ESRI.ArcGIS.esriSystem using ESRI.ArcGIS.SystemUI
testxml
- 最近写的小程序的一部分,这部分实现xml命名空间,并通过xerces-2_9_1测试。包含.xml .dtd 和.xsd文件,以及为测试所编写的java文件。-Recently wrote a little programme,this a part of this programme. This part is to achieve the xml namespace, and already passed through xerces-2_9_1 test. Included. Xml. D
goods
- #include <iostream> #include <string> using namespace std class Goods {public: Goods(char *GoodsNum,string n,double p,int a) { strcpy(GoodsNumber,GoodsNum) GoodsName=n GoodsPrice=p GoodsAmount=a }
RegEx
- 使用.net 4.0实现的计算器,和常见的计算器不同。这个计算器支持复数计算。比如说输入是 3.567E-10+4.89E+5i-.1 它会自动分析出其中的运算有 1. 0.00000000003567 2. 489000i 3. -0.1-As of .NET 4.0, the native library does offer a complex class in the namespace System.Numerics. The ideal situation
datastruct
- 通过反序输出整数,实现了一个整数的反序输出。很好的实现了反序功能。-#include<iostream> using namespace std int main() {int a,b=0 cout<<"please input the integer:"<<endl cin>>a while(a) {b=b*10+a 10 a/=10 } cout<<"the end is"<<
choose
- 用c++编写的选票系统,并可统计相关得票情况-#include <iostream> using namespace std struct Person//声明结构体类型Person; { char name[20] int count } int main() { Person leader[3]={"aaa",0,"bbb",0,"ccc",0} //定义Person类型的数组,内容为当前候选人的姓名及得票数;
zookeeper
- Hadoop-0.20.2中的SecondaryNameNode只是用来周期性从NameNode下载镜像(fsimage)和日志(edits),将其合并形成新的镜像后上传给NameNode,这个过程被称为CheckPoint。运行SecondaryNameNode节点的内存中没有命名空间和数据块Block与DataNode的映射信息,所以当NameNode宕机时,无法完全恢复元数据,只能恢复上一次做CheckPoint时的元数据。 因此,Hadoop-0.21.0中引入了一个BackupNo
SortedSet
- 定义类模板SortedSet,即元素有序的集合,集合元素的类型 和集合元素的最大个数可由使用者确定。要求该类模板对外提供 以下三种操作: insert:加入一个新的元素到合适的位置上,并保证集合元 素的值不重复; get:返回比给定值大的最小元素的地址。若不存在,返回0; del:删除与给定值相等的那个元素,并保持剩余元素的有序性。 -#include <iostream> using namespace std template <c
wordchose
- 进行自负的匹配,- #include<iostream.h> #include <string> using namespace std class String { private: int size char *chr public: String(char* temp) { size=strlen(temp)
Chap8
- 关于ADO.NET的介绍,包括命名空间,数据库操作,command对象等-Introduction about ADO.NET, including namespace, database operations, command objects
using-namespace-std
- 讲述了一些常用的是using namespace std,就是说用C++的标准名字空间。 -About used using namespace std, means that the C++ standard namespace.
namespace
- 频道分配问题源代码,清华大学第1028道题,算法设计与分析-The source code of the channel assignment problem, Tsinghua University (1028), Algorithm Design and Analysis
lab2
- 将华氏温度转化为摄氏温度,用C++语言实现,-#include<iostream> using namespace std double convert(double f) { double c c=(f-32)*5/9 return c } void main() { double f,c cout<<"请输入一个华氏温度:" cin>>f c=convert(f) co
C
- 名字空间别名的使用,运行结果:namespace values: 10 20 Alias namespace values: 10 20 -Namespace alias to use the results:? Namespace values: 10 20 Alias namespace values: 10 20
jqr
- using System using System.Collections.Generic using System.Linq using System.Text namespace 聊天机器人2._0 { class Program { static void Main(string[] args) { Console.WriteLine("你好,我是机器人!") while (true) { string s
namespace
- Visual Studio C++ 编程入门 名字空间-Visual Studio C++ programming entry namespace