标题:新手求教sstream
只看楼主
豆豆芽
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2017-3-17
结帖率:0
已结贴  问题点数:20 回复次数:1 
新手求教sstream

为什么会多出一行空行 运行结果不对

#if 1
#include <iostream>
#include <string>
#include <sstream>
using namespace std;

int main ()
{
  string mystr;
  float price=0;
  int quantity=0;

  cout << "Enter quantity: ";
  getline (cin,mystr);
  stringstream(mystr) >> quantity;
  cout << "Enter price: ";
  getline (cin,mystr);
  stringstream(mystr) >> price;

  cout << "Total price: " << quantity*price << endl;
  return 0;
}
#endif
搜索更多相关主题的帖子: quantity include price 
2017-03-17 10:29
luoj75
Rank: 2
等 级:论坛游民
帖 子:17
专家分:55
注 册:2016-11-28
得分:20 

可以的呀
2017-03-21 00:03



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-475172-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.548874 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved