函数又叫方法,即实现某项功能或服务的代码块
void show(){ std::cout << "hello world!"; }
例子如下:
#include<iostream> void show(){ std::cout << "Hello World!" << std::endl; } int main(){ show(); return 0; }
时间: 2024-10-04 18:17:11
函数又叫方法,即实现某项功能或服务的代码块
void show(){ std::cout << "hello world!"; }
例子如下:
#include<iostream> void show(){ std::cout << "Hello World!" << std::endl; } int main(){ show(); return 0; }