C++ 스택 push()

Jmnote (토론 | 기여)님의 2023년 11월 8일 (수) 01:25 판 (→‎같이 보기)

1 개요

C++ 스택 push()
#include <iostream>
#include <stack>
using namespace std;

int main () {
  stack<int> s;
  s.push(1);
  s.push(2);
  while(!s.empty()) {
      cout << s.top() << endl;
      s.pop();
  }
}

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}