Lost Fortune 拟人化探险游戏

// Lost Fortune
// A personalized adventure

#include <iostream>
#include <string>

using std::cout;
using std::cin;
using std::endl;
using std::string;

int main()
{
    const int GOLD_PIECES = 900;
    int adventurers, killed, survivors;
    string leader;

    //get the information
    cout << "Welcome to Lost Fortune\n\n";
    cout << "Please enter the following for your personalized adventure\n";

    cout << "Enter a number: "; 
    cin >> adventurers;

    cout << "Enter a number, smaller than the first: ";
    cin >> killed;

    survivors = adventurers - killed;

    cout << "Enter your last name: ";
    cin >> leader;

    //tell the story
    cout << "\n一个" << adventurers << "人的勇敢的探险队出发进行一项任务";
    cout << "-- 寻找失落的远古矮人宝藏";
    cout << "这个探险队由那个传奇的勇士" << leader << "领导。\n";

    cout << "\n在路上,一群残忍的食人魔伏击了他们。";
    cout << "所有人在" << leader << "的指挥下勇敢的战斗";
    cout << ", 最终,食人魔被击败了,但勇士们也付出了一定的代价。 ";
    cout << "在冒险队中有" << killed << " 名被杀死, ";
    cout << "仅剩下了" << survivors << "名勇士。\n";

    cout << "\n勇士们即将放弃一切希望,"; 
    cout << "但在埋葬死者的时候, ";
    cout << "他们偶然发现了被埋藏的宝藏, ";
    cout << "因此,勇士们将 " << GOLD_PIECES << "枚金币均分。";
    cout << leader << "保留了额外的" << (GOLD_PIECES % survivors);
    cout << "枚金币,以确保不会发生纠纷。\n";

    return 0;
}

 

posted @ 2020-02-26 19:06  树下一朵云  阅读(216)  评论(0)    收藏  举报