1.8.3 講故事
接下來(lái)程序用變量來(lái)講故事。
//tell the story
cout << "\nA brave group of " << adventurers << " set out on a quest ";
cout << "-– in search of the lost treasure of the Ancient Dwarves. ";
cout << "The group was led by that legendary rogue, " << leader << ".\n";
cout << "\nAlong the way, a band of marauding ogres ambushed the party. ";
cout << "All fought bravely under the command of " << leader;
cout << ", and the ogres were defeated, but at a cost. ";
cout << "Of the adventurers, " << killed << " were vanquished, ";
cout << "leaving just " << survivors << " in the group.\n";
cout << "\nThe party was about to give up all hope. ";
cout << "But while laying the deceased to rest, ";
cout << "they stumbled upon the buried fortune. ";
cout << "So the adventurers split " << GOLD_PIECES << " gold pieces.";
cout << leader << " held on to the extra " << (GOLD_PIECES % survivors);
cout << " pieces to keep things fair of course.\n";
return 0;
}
程序的代碼和驚險(xiǎn)的敘述都非常清晰。然而要指出的是,為了計(jì)算探險(xiǎn)隊(duì)隊(duì)長(zhǎng)持有的金塊數(shù)目,程序在表達(dá)式GOLD_PIECES % survivors中使用了取模運(yùn)算符。該表達(dá)式計(jì)算GOLD_PIECES / survivors的余數(shù),也就是將幸存的探險(xiǎn)家私藏的金塊平分后剩下的金塊數(shù)目。