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