02 2021 档案
摘要:第一题 main.cpp #include <iostream> #include "golf.h" int main() { using std::cin; using std::cout; using std::endl; BankAccount bank {"ycy", "20210226",
阅读全文
摘要:第一题 main.cpp 源文件 #include #include #include "golf.h"const int Max ...
阅读全文
摘要:对于 C/C++ 标准库头文件,直接 #include 即可。 项目内自己编写的头文件,使用 #include “文件名”。 对于...
阅读全文
摘要:第一题 #include #include using namespace std;void show(const string &...
阅读全文
摘要:第一题 #include using namespace std;double average(int, int);int main...
阅读全文
摘要:第一题 #include #include int main() { using std::cin; using std...
阅读全文
摘要:第一题 直接上代码: #include using namespace std;int main() { int a, b; ...
阅读全文