C++中函式呼叫的用法

一分快三大小單雙走勢技巧q10532761發表於2021-02-14

C++中函式呼叫的方法與C語言並無區別,依舊是在呼叫方函式中執行函式呼叫語句來實現函式呼叫,

下面,我們以訓練場的1031題為例,為大家展示C++中函式呼叫及傳參的使用方法。

1031題為字串逆序問題,程式碼如下:

include

include

using namespace std; int Reverse(char a[],char b[]) { int i=0,n; n=strlen(a); while(a[i]!='\0') { b[n-i-1]=a[i]; i++; } b[n]='\0'; return 0; } int main() { char str1[100]; char str2[100]; cin>>str1; Reverse(str1,str2); cout<

相關文章