Tamagotchi
#include <windows.h>
#include <tchar.h>
#include<iostream>
#include<ctime>
#include<string>
#include <stdlib.h>
using namespace std;
int main(){ _tsetlocale(LC_ALL, _T("portuguese_brazil"));
srand((unsigned int)time(NULL));
int idade = 0, fome = rand() % 100 + 1, higiene = rand() % 100 + 1, inteligencia = rand() % 100 + 1, ativo = rand() % 100 + 1, energia = rand() % 100 + 1, felicidade = rand() % 100 + 1, saude = rand() % 100 + 1, ressu = rand() % 2, opt1, opt2, i, sexo; string nome; bool vivo = 1, rpt = 0;
//--------------------------------------------------------------------------------------------------------------------
cout << "\n"; cout << "\n"; cout << "\n"; cout << "\n"; cout << "\n"; cout << "\n"; cout << "\n"; cout << "\n"; cout << "\n"; cout << " TAMAGOTCHI" << endl; cout << "\n"; cout << "\n"; cout << "\n"; cout << " Carregando" << endl; for (i = 0; i < 30; i++){ if (i == 0){ cout << " _"; } else{ cout << "_"; } Sleep(200); } system("cls");
//-------------------------------------------------------------------------------------------------------------------- while (rpt == 0){ cout << " ___________________ " << endl; cout << "| MENU |" << endl; cout << "| Sortear.........1 |" << endl; cout << "| Macho...........2 |" << endl; cout << "| Fêmea...........3 |" << endl; cout << "|___________________|" << endl; cout << "\nEscolha se você quer adotar um macho, uma fêmea ou quer sortear o sexo: "; cin >> opt1;
switch (opt1){ case 1: sexo = rand() % 2; if (sexo == 0){ cout << "\nA máquina sorteou Macho" << endl; Sleep(2000); system("cls"); } else{ cout << "\nA máquina sorteou Fêmea" << endl; Sleep(2000); system("cls"); } rpt = 1; break;
case 2: sexo = 0; rpt = 1; cout << "\nVocê escolheu Macho" << endl; Sleep(2000);