Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
██]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]] 10% complete.....
████████]]]]]]]]]]]]]]]]]]]]] 35% complete....
████████████]]]]]]]]]]]] 60% complete....
█████████████████] 99% complete.....\
ERROR!: True Brothers of Islam are irreplaceable. I could never delete you Brother! Send this to ten other Mujahideen who would give their lives for ﷲAllahﷲ Or never get called Brother.
⠀⠀⠀⠀⠀⠀⠀⣾⣿⣿⣿⡿⠛⠋⠁⠀⠀⠀⠀⠀⣿⣿⣇⠀⠀⠀⠀⠀⣸⣿⡟⠀⠀
⠀⠀⠀⠀⠀⠀⣼⣿⣿⣿⠏⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⣿⣿⡄⠀⠀⠀⢰⣿⣿⠁⠀⠀
⠀⠀⠀⠀⠀⣼⣿⣿⣿⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣷⠀⠀⢠⣿⣿⡟⠀⠀⠀
⠀⠀⠀⠀⢸⣿⣿⣿⣿⡃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣆⣀⣼⣿⡿⠁⠀⠀⠀
⠀⠀⠀⢀⣾⣿⣿⣿⣿⣿⣄⠀⠀⠀⢠⣼⣿⡷⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣡⣤⡄⠀⠀
⠀⠀⠀⣼⣿⣿⣿⣿⣿⣿⣿⣶⣶⣾⣿⣿⡟⠀⠀⠀⠈⣿⣿⣿⣿⣿⣿⣿⣿⣿⣧⡀⠀
⠀⠀⣰⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠟⠋⠁⠀⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀
⠀⣰⣿⣿⣿⣿⣿⣿⣿⣿⡿⠟⠉⠀⠀⠀⠀⠀⠀⠀⣼⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇
#include <iostream>
struct Node {
int data;
Node* next;
};
class Pilha {
private:
Node* top; // ponteiro no topo da pilha
public:
Pilha() {
top = nullptr; // pilha vazia por causa do ponteiro
}
// adicionar um elemento à pilha
void push(int valor) {
Node* novoNo = new Node;
novoNo->data = valor;
novoNo->next = top;
top = novoNo;
void pop() {
if (top == nullptr) {
std::cout << "Pilha Vazia" << std::endl;
} else {
int valorRemovido = top->data;
Node* temp = top;
top = top->next;
delete temp;
std::cout << "Elemento removido: " << valorRemovido << std::endl;
}