Instalează Steam
conectare
|
limbă
简体中文 (chineză simplificată)
繁體中文 (chineză tradițională)
日本語 (japoneză)
한국어 (coreeană)
ไทย (thailandeză)
български (bulgară)
Čeština (cehă)
Dansk (daneză)
Deutsch (germană)
English (engleză)
Español - España (spaniolă - Spania)
Español - Latinoamérica (spaniolă - America Latină)
Ελληνικά (greacă)
Français (franceză)
Italiano (italiană)
Bahasa Indonesia (indoneziană)
Magyar (maghiară)
Nederlands (neerlandeză)
Norsk (norvegiană)
Polski (poloneză)
Português (portugheză - Portugalia)
Português - Brasil (portugheză - Brazilia)
Русский (rusă)
Suomi (finlandeză)
Svenska (suedeză)
Türkçe (turcă)
Tiếng Việt (vietnameză)
Українська (ucraineană)
Raportează o problemă de traducere
#include <random>
#include <ctime>
using namespace std;
class Teammate_Applicant {
Private:
string Teammate_IGN;
int Teammate_IQ;
/* initialize random seed: */
srand (time(69)); // Time = 69... always!
/* EXACT IQ, Definitely not randomly generated, its scientifically calculated... if you say otherwise, u are
chimpanzee ez.
*/
Teammate_IQ = rand() % 201;
Public:
getTeammate_IQ() {
return Teammate_IQ;
}
Teammate_Applicant(NAME) {
Teammate_IGN = NAME;
}
};
int main() {
Teammate_Applicant(IndependentBlackWoman);
if (getTeammate_IQ() > 55) { //Tests IQ compared to average chimp IQ.
cout << "Congrats! Our complex, multi-variabled analysis says that you have an IQ of ";
cout << getTeammate_IQ();
cout << ". " << "We can confirm that your IQ exceeds that of an average chimp! Welcome to the team!";
}
else {
cout << "Please end it. DO NOT REPRODUCE! Let your genes die out. Help accelerate the process ";
cout << "of Darwinism. Stupid ape...";
}
return 69;
}