英語小說單字筆記中2025-11-23

圖片
bollocks(ボロックス・ぼろっくす) 胡說;廢話;粗口 That’s bollocks and you know it. それは ボロックス だって君もわかってるよ。 那是 廢話 ,你自己也知道。 marshal(マーシャル・まーしゃる) 指揮;統率;集合 He marshaled the team before the event. かれはイベントの前にチームを マーシャル した。 活動開始前,他把全隊集合並統整準備。 knackered(ナッカード・なっかーど) 累壞的;精疲力竭 I’m completely knackered after work. しごとのあと、わたしはすっかり ナッカード だ。 下班後我整個人累壞了。

自己想要的函式~我來寫~


開心地來動動手寫個加法函式吧~哈哈哈


#include<iostream>
#include<cstdlib>
using namespace std;


//宣告函式的原型
int add(int n , int m ) ;

int main()
{
    //呼叫函式 
    cout << "呼叫加法函式 " <<add(2,6)<< endl ;       
    system("pause");
    return 0;
}


//實作加法函式
int add(int n , int m)
{
    int sum;
    sum = n + m;
    return sum;


留言