Instale o Steam
iniciar sessão
|
idioma
简体中文 (Chinês simplificado)
繁體中文 (Chinês tradicional)
日本語 (Japonês)
한국어 (Coreano)
ไทย (Tailandês)
Български (Búlgaro)
Čeština (Tcheco)
Dansk (Dinamarquês)
Deutsch (Alemão)
English (Inglês)
Español-España (Espanhol — Espanha)
Español-Latinoamérica (Espanhol — América Latina)
Ελληνικά (Grego)
Français (Francês)
Italiano (Italiano)
Bahasa Indonesia (Indonésio)
Magyar (Húngaro)
Nederlands (Holandês)
Norsk (Norueguês)
Polski (Polonês)
Português (Portugal)
Română (Romeno)
Русский (Russo)
Suomi (Finlandês)
Svenska (Sueco)
Türkçe (Turco)
Tiếng Việt (Vietnamita)
Українська (Ucraniano)
Relatar um problema com a tradução
#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;
}