Когда я собираюсь скомпилировать этот код, он выдает ошибку C2784:
ошибка C2784: 'std::basic_istream<_Elem,_Traits> &std::operator >>(std::basic_istream<_Elem,_Traits> &,std::basic_string<_Elem,_Traits,_Alloc> &)'
: не удалось вывести аргумент шаблона для 'std::basic_istream<_Elem,_Traits> &'
из 'std::ostream'
1> C: \ Program Files (x86) \ Microsoft Visual Studio 10.0 \ VC \ include \ string (458): см. Объявление 'std::operator >>'
что это значит? 2010 изменил некоторые директивы препроцессора? или я просто нуб?
Я полагаю, я не правильно использую getline, но я думаю, что любая помощь будет признательна. спасибо
#include "stdafx.h"
#include <iomanip>
#include <iostream>
#include <string>
using namespace std;
using namespace System;
int main()
{
string Date;
string ISBN;
string Title;
int qty;
float price;
cout<< "\n\n Serendipity Booksellers\n Cashier Module\n\n";
cout<< "Date:";
getline(cin, Date);
cout<< "\nQuantity of Book:";
cin>> qty;
cout<<"\nISBN:";
getline(cin, ISBN);
cout<<"\nTitle:";
getline(cin, Title);
cout>>"\nPrice:";
cin>> price;
cout<<"Serendipity Book Sellers\n\nDate:\n\nQty ISBN\t\tTitle\t\t\tPrice\tTotal\n";
cout<<"____________________________________________________________________________";
cout<<"\n\n\n\t\tSubtotal\n\t\tTax\n\t\tTotal\n\n\nThank You for Shopping at Serendipity!\n";
return 0;
}