源程序: #include <iostream>#include <string>using namespace std; class Course{private: string coursename; int credit; int xueshi; string type; string pro ...
分类:
其他好文 时间:
2020-02-06 16:30:10
阅读次数:
64
源程序: #include <iostream>using namespace std; const double pi = 3.14159;int main(){ double r; cout << "输入r:"; cin >> r; double l = 2.0*pi*r; double s = ...
分类:
其他好文 时间:
2020-02-06 14:49:53
阅读次数:
67
源程序: #include <iostream>using namespace std;void func(int a, int b, int c = 0){ cout << a << b << c << endl;}int main(){ func(5,9); system("pause"); r ...
分类:
其他好文 时间:
2020-02-06 14:48:42
阅读次数:
49
源程序: #include <iostream>using namespace std;int main(){ const int x = 5, y = 6; const int *p = &x; p = const_cast<int *>(&y); cout << *p << endl; syst ...
分类:
其他好文 时间:
2020-02-06 14:19:00
阅读次数:
66
源程序: 用三种排序:冒泡排序,直接插入排序,直接选择排序 #include <iostream>#define N 5using namespace std; template <typename T>//冒泡排序 /*void bubble_sort(T a[], int n){ int i, ...
分类:
其他好文 时间:
2020-02-06 11:01:08
阅读次数:
77
源程序:用面向对象方法又做一遍 #include <iostream>#define N 10using namespace std; template <typename T> class sum_array{private: T a[N];public: sum_array(T a1[]) { ...
分类:
其他好文 时间:
2020-02-06 10:55:04
阅读次数:
59
源程序: #include <iostream>#define N 10using namespace std; template <typename T> T sum_array(T a[], int n){ int i,size; T sum=0; cout << "您想求数组前几项的和,请输入 ...
分类:
其他好文 时间:
2020-02-06 10:21:00
阅读次数:
56
源程序: #include <iostream>using namespace std;template <class T> class max{private: T x, y;public: max(T a, T b) { x = a; y = b; } T compare() { return ...
分类:
其他好文 时间:
2020-02-06 01:20:55
阅读次数:
72
源程序: #include <iostream>using namespace std;template <class T> void f(T a[],int n){ T t; for (int i = 0; i < n / 2; i++) { t = a[i]; a[i] = a[n-i-1]; ...
分类:
其他好文 时间:
2020-02-05 23:42:51
阅读次数:
68
源程序: #include <iostream>using namespace std;template <class T> class A{private: T x, y, s;public: A(T a, T b) { x = a; y = b; s = x + y; } void show() ...
分类:
其他好文 时间:
2020-02-05 23:36:13
阅读次数:
70