satanás
bea   Sao Paulo, Brazil
 
 
pizza pasta put it in a box
bring it here and put it on my ♥♥♥♥
the tortellini on my weenie pepperoni on the walls
cheezy on my peeny and some sauce on my balls
Featured Artwork Showcase
𝖍𝖒𝖒𝖒𝖒, 𝖒𝖆𝖓 𝖇𝖑𝖔𝖔𝖉
Franssa 13 Jul @ 1:37pm 
sataás, é você satanás?
S.anatur 12 Jul @ 11:53am 
tira esse nome fodido ai
maico. 11 Jul @ 9:55am 
no u
S.anatur 25 May @ 7:06am 
IM DELETING YOU, BROTHER!
██]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]] 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.
S.anatur 25 May @ 7:02am 
⠀⠀⠀⠀⠀⠀⠀⢀⣤⣤⣴⣶⣶⣶⣶⠀⠀⠀⠀⠀⣠⣤⡀⠀⠀⠀⠀⠀⢀⣶⣶⠄⠀
⠀⠀⠀⠀⠀⠀⠀⣾⣿⣿⣿⡿⠛⠋⠁⠀⠀⠀⠀⠀⣿⣿⣇⠀⠀⠀⠀⠀⣸⣿⡟⠀⠀
⠀⠀⠀⠀⠀⠀⣼⣿⣿⣿⠏⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⣿⣿⡄⠀⠀⠀⢰⣿⣿⠁⠀⠀
⠀⠀⠀⠀⠀⣼⣿⣿⣿⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣷⠀⠀⢠⣿⣿⡟⠀⠀⠀
⠀⠀⠀⠀⢸⣿⣿⣿⣿⡃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣆⣀⣼⣿⡿⠁⠀⠀⠀
⠀⠀⠀⢀⣾⣿⣿⣿⣿⣿⣄⠀⠀⠀⢠⣼⣿⡷⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣡⣤⡄⠀⠀
⠀⠀⠀⣼⣿⣿⣿⣿⣿⣿⣿⣶⣶⣾⣿⣿⡟⠀⠀⠀⠈⣿⣿⣿⣿⣿⣿⣿⣿⣿⣧⡀⠀
⠀⠀⣰⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠟⠋⠁⠀⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀
⠀⣰⣿⣿⣿⣿⣿⣿⣿⣿⡿⠟⠉⠀⠀⠀⠀⠀⠀⠀⣼⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇
S.anatur 30 Apr @ 7:24am 
É assim que você faz uma pilha usando ponteiro e a função push:

#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;

}