Я пытаюсь выяснить, почему я получаю ошибку компилятора
IntelliSense: ни один оператор ">>" не соответствует этим операндам
с кодом ниже. Был бы признателен за любую помощь, оказанную. Спасибо
#include "stdafx.h"
#include <string>
#include <iostream>
using namespace std;
int main(void)
{
int n;//number of resources we will be dealing with
cout <<"What is number of resources to be shared?"<<
cin >> n;
return 0;
}