namespace
资源简介:namespace
上传时间: 2015-02-02
上传用户:huangld
资源简介:A URN namespace of Object Identifiers
上传时间: 2015-07-05
上传用户:zmy123
资源简介:#include<iostream> using namespace std int main() { unsigned long x,warcraft,war,l cin> x while(x) { unsigned long *p=new unsigned long[x+1] if(p==NULL) { cerr<<"error!"<<endl abort() } for(warcraft...
上传时间: 2015-12-12
上传用户:manlian
资源简介:Dijkstra算法求最短路径(C#版) using System using System.Collections using System.Text namespace Greedy { class Marx { private int[] distance private int row private ArrayList ways = new ArrayList() public Marx(int n,pa...
上传时间: 2013-12-29
上传用户:liglechongchong
资源简介:测试namespace的程序 适于初学者
上传时间: 2016-01-16
上传用户:familiarsmile
资源简介:一个VB.NET 写的namespace,可以在WINDOWS MOBILE 5,6平台上获得当前系统时间,内存使用状态,程序所在位置和设备名称. 直接应用函数名就可以了.没有传入参数.除了时间,其他的都以字符串为类型
上传时间: 2016-09-04
上传用户:450976175
资源简介://使用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
上传时间: 2016-12-31
上传用户:luke5347
资源简介:rt csharp namespace intro
上传时间: 2017-08-19
上传用户:abc_1234
资源简介:wpf和cab的结合使用源码(转载),目前wpf设计器还有缺陷,不能识别clr-namespace
上传时间: 2015-10-13
上传用户:yt1993410
资源简介:[问题描述] 将N个关键字去整数的记录进行整序, 以使所有关键字为非负数的记录排在关键字为负数的记录之前,要求使用最少的附加空间,且算法的时间复杂度为O(N) [输入] 待排序记录个数,各关键字的值。 [输出] 关键字从正负分开,正数在前 [存储结构]...
上传时间: 2014-01-13
上传用户:aig85
资源简介:写了一个小程序,听往上说什么将类的申明放在namespace里面的话,该类就不能再派生了,我做的这个程序还可以派生,不知道这是怎么回事
上传时间: 2013-12-23
上传用户:yuchunhai1990
资源简介:c++图书管理系统 include <iostream> #include <iomanip> #include <string> #include <fstream>//输入/输出文件流类 using namespace std const int Maxr=100 //最多的读者 const int Maxb=100 //最多的图书 const int Maxbor=5 //每位读者最多借五...
上传时间: 2013-12-18
上传用户:拔丝土豆
资源简介: 在本光盘中提供了由谭浩强编著的《C++程序设计》(清华大学出版社出版)一书中各章的例题程序以及全部习题的参考解答,以方便教师进行教学,也便于读者上机运行这些程序以及在此基础上修改和调试程序。 程序按章设立文件夹(子目录),例如文件夹c12中包含的...
上传时间: 2017-02-04
上传用户:youth25
资源简介:This inspired me to make this tool. This tool is not a professional one but shows an example which makes use of the System.Diagnostics namespace. With this tool, you can write small console based Java programs, compile and run. Just a way t...
上传时间: 2014-01-10
上传用户:561596
资源简介:#include <iostream> using namespace std; int main(){ int t; cin>>t; while(t--){ long long n; cin>>n; if(n%2==1) cout<<(n*n-1)/4<<endl; else if (n%4==0) cout <<(n*n)/4-1<<endl; else{ if(n==2) cout<<1<<endl; else...
上传时间: 2015-04-20
上传用户:nr607
资源简介:#include <iostream> using namespace std; class Student { public: Student(int, int); int num; int grade; }; Student::Student(int n, int g) { num = n; grade = g; } int maxGradeIndex(Student* s) { int maxGrade, index = 0, i = 0; maxGrade = s[0...
上传时间: 2016-04-23
上传用户:burt1025
资源简介:程序显示: 一年内总降雨量、平均每月的降雨量、降雨量最大的月份和最小的月份。 #include<iostream> using namespace std; #include<stdlib.h> int main() .. .. .. cout<<"降雨量最小的月份是:"<<minyue<<"月 "<<"降雨量为:"<<min<<en...
上传时间: 2018-03-27
上传用户:shayusha
资源简介:#include <stdio.h> #include <stdlib.h> ///链式栈 typedef struct node { int data; struct node *next; }Node,*Linklist; ...
上传时间: 2018-05-09
上传用户:123456..
资源简介:#include <iostream> #include <stdio.head> #include <stdlib.head> #include <string.head> #define ElemType int #define max 100 using namespace std; typedef struct node1 { ElemType data; struct node1 *next; }Node1,*LinkList;//链栈 ty...
上传时间: 2018-05-09
上传用户:123456..
资源简介:#include "iostream" using namespace std; class Matrix { private: double** A; //矩阵A double *b; //向量b public: int size; Matrix(int ); ~Matrix(); friend double* Dooli(Matrix& ); void Input(); ...
上传时间: 2018-05-20
上传用户:Aa123456789
资源简介:#include<iostream> using namespace std; int s=0; int prime(int x){ int i,p=1; for(i=2;i<=x/2;i++){ if(x%i==0){ p=0; break; } } if(p!=0){ cout<<x<< " "; s++; } } int main(){ for (int k=5;k<=100;k++){ prime(k); if(s%5==0) c...
上传时间: 2020-06-30
上传用户:1274636550
资源简介:大家先试用一下,源码后面奉上!!!using System;using System.Collections.Generic;using System.Configuration;using System.Data;using System.Linq;using System.Threading.Tasks;using System.Windows;namespace SerialCom{ /// <summary> //...
上传时间: 2022-03-25
上传用户:kent