C++函式

哈哈好夢發表於2019-03-26

函式基本知識

要使用C++函式,必須要完成如下工作:

  • 提供函式定義
  • 提供函式原型
  • 呼叫函式
#include<iostream>
void simple(); //函式原型
int main(){
    using namespace std;
    simple(); //呼叫函式
}
void simple(){ //函式定義
    using namespace std;
    cout << "simple fuction" << endl;
}
複製程式碼

函式和陣列

相關文章