1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
#include <iostream> // 输出流库 using namespace std; // 使用标准命名空间 // 课程:07.4 函数的常见样式 //1、无参无返 void test01() { cout << "当前函数 test01" << endl; } //2、有参无返 void test02(int a) { cout << "当前函数 test02 a= " << a << endl; } //3、无参有返 int test03() { cout << "当前函数 test03" << endl; return 100; } //4、有参有返 int test04(int a) { cout << "当前函数 test04 a= " << a << endl; return a+58; } int main() { //1、无参无返函数调用 test01(); //2、有参无返函数调用 test02(26); //3、无参有返函数调用 cout << "test03 返回:" << test03() << endl; //4、有参有返函数调用 cout << "test04 返回:" << test04(15) << endl; system("pause"); // 控制台暂停,等待下一步操作 return 0; // 结束返回值:0 } |
07.4 C++函数常见样式
未经允许不得转载:Ai分享 » 07.4 C++函数常见样式