博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于书中堆积的程序修改
阅读量:5745 次
发布时间:2019-06-18

本文共 504 字,大约阅读时间需要 1 分钟。

#include<stack>

#include<iostream>                            //原文中没有此头文件
using namespace std;                   
int main()
{
 int n;
 double item;
 stack<double>numbers;
 cout<<"Type in an integer n followed by n decimal numbers"<<endl<<"The numbers will be printed in reverse order"<<endl;
 cin>>n;
 for(int i=0;i<n;i++)
 {
  cin>>item;
  numbers.push(item);
 }
 cout<<endl<<endl;
 while(!numbers.empty())
 {
  cout<<numbers.top()<<"";
  numbers.pop();
 }
 cout<<endl;
 return 0;                      //原文没有返回值
}

 

此程序作用为输入n,再输入n个数,将这n个数排序。

转载于:https://www.cnblogs.com/liu-yang/p/3275856.html

你可能感兴趣的文章