码迷,mamicode.com
首页 >  
搜索关键字:自考    ( 238个结果
自考新教材-p90_5(1)
源程序: #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
自考新教材-p58_3(3)
源程序: #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
自考新教材-p58_3(1)
源程序: #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
自考新教材-p58_3(2)
源程序: #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
自考新教材-p352_2
源程序: 用三种排序:冒泡排序,直接插入排序,直接选择排序 #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
自考新教材-p352_3(2)
源程序:用面向对象方法又做一遍 #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
自考新教材-p352_3
源程序: #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
自考新教材-p352_1
源程序: #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
自考新教材-p350_3
源程序: #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
自考新教材-p350_2
源程序: #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
238条   上一页 1 2 3 4 ... 24 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!