Advertisement
idsystems

Cpp_Practica45_PilaEstatica

Jun 23rd, 2024
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.65 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. const int MAX = 5;
  5.  
  6. int main() {
  7.     int pila[MAX];
  8.     int tope = 0;
  9.     int elemento;
  10.  
  11.     // Insertar 5 elementos en la pila
  12.     for (int i = 0; i < MAX; i++) {
  13.         cout << "Introduce el elemento " << (i + 1) << ": ";
  14.         cin >> elemento;
  15.         if (tope < MAX) {
  16.             pila[tope] = elemento;
  17.             tope++;
  18.         } else {
  19.             cout << "La pila está llena." << endl;
  20.         }
  21.     }
  22.  
  23.     // Mostrar y eliminar los elementos de la pila
  24.     while (tope > 0) {
  25.         tope--;
  26.         cout << "Elemento eliminado: " << pila[tope] << endl;
  27.     }
  28.  
  29.     return 0;
  30. }
  31.  
  32.  
  33.  
Tags: Pilas
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement