摘要:
运算符重载 成员函数单目 #include<iostream> using namespace std; class A{ int p; public: A (int a){ p = a; } A operator++(){ p++; return *this; } A operator++(int 阅读全文
摘要:
5.1求二维数组的鞍点 #include<iostream> using namespace std; int a[10][10]; int b[10],c[10]; int n,m; int main(int argc, char const *argv[]) { n = 3; m = 4; fo 阅读全文