03 2020 档案
摘要:#include<iostream> #include<cstring> using namespace std; class EV{ public: EV(const int &vR, const int& vN) { result = vR; n =vN; } EV(){} int getRes
阅读全文
摘要://makefile cc = g++ prom = mystring obj = mystring.o $(prom):$(obj) rm -rf *.exe; $(cc) -o $(prom) $(obj) //头文件 #ifndef __MYSTRING__ #define __MYSTRIN
阅读全文
摘要://makefile cc = g++ prom = complex obj = complex.o $(prom):$(obj) rm -rf *.exe; $(cc) -o $(prom) $(obj) //complex.h #ifndef __COMPLEX__ #define __COMP
阅读全文