摘要: #include <iostream> #include <Windows.h> #include <string> #include <conio.h> //getch使用 #include "hacker.h" using namespace std; #define WIDTH 40 #def 阅读全文
posted @ 2022-08-22 23:17 wshidaboss 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 函数的调用和声明: 1.确定函数的功能; 2.确定函数的参数; 3.确定函数的返回值; 4.确定函数名; 5.函数的实现。 1.简单的函数调用: #include <iostream> using namespace std; int sum(int n) { //函数的定义 n表示形参 int s 阅读全文
posted @ 2022-08-22 22:46 wshidaboss 阅读(416) 评论(0) 推荐(0) 编辑