⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 task2.cpp

📁 栈的使用
💻 CPP
字号:
#include <iostream>
using  namespace std;
#include <stack>
#include "task2.h"

int main()
{
	int n;
	int item;
	stack <int> numbers;
	cout << " Type in an integer n followed by n decimal numbers."
		 <<endl;
	cin >> n;
	for (int i = 0; i < n; i++)
	{
		cin >> item;
		numbers.push(item);
	}

	cout << endl<<"The size of the stack is:"<< numbers.size()<<endl;

	cout << " The numbers will be printed in reverse order."
		 << endl;
	while (!numbers.empty( )) 
	{
		cout << numbers.top( ) << " ";
		numbers.pop( );
	}
	cout << endl<<"After printed,the size of the stack is:"<<numbers.size();

	cout << endl;
	system("pause");

	return 0;
	}




	

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -