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

圖片
devouring(デヴァワリング・でゔぁわりんぐ) 貪婪地吃;狼吞虎嚥 He was devouring the cake like he hadn’t eaten in days. かれは何日も食べていないようにケーキを デヴァワリング していた。 他像好久沒吃飯一樣狼吞虎嚥地吃蛋糕。 bream(ブリーム・ぶりーむ) 鯛魚;白鯧類 We caught a large bream at the lake today. きょうわたしたちは湖で大きな ブリーム をつった。 我們今天在湖邊釣到一條大鯛魚。 turbot(ターボット・たーぼっと) 大比目魚;多寶魚 The chef served grilled turbot for dinner. シェフは夕食にやいた ターボット を出した。 主廚晚餐端上了香烤多寶魚。

C++ 猜拳程式

#include <iostream>
#include <cstdlib> 
using  namespace std;
int main()
{
    int n ;// 0代表剪刀 ; 1代表石頭 ; 剩下代表布 
    cout << "請輸入數字來猜拳;  0代表剪刀 ; 1代表石頭 ; 其它數字代表布" <<endl;
    cin  >> n;

    if( n == 0 )
        cout << "猜拳你出的是剪刀" << endl;
    else if( n == 1 )
        cout << "猜拳你出的是石頭" << endl;
    else
        cout << "猜拳你出的是布 " << endl; 
            
    system("pause");
    return 0;
}