学習演習として簡単な電卓を作成していて、つまずきました-最初の数値のユーザー入力を取得しましたが、2番目の入力のintを格納できません-オブジェクトを作成する必要がありますか?これは明らかな問題だと思います...
//Simple calculator to work out the sum of two numbers (using addition)
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
cout << "Enter the first int: \n";
int input1 = std::cin.get();
cout << "Enter the second int: \n";
int input2 = std::cin.get();
cout << "The sum of these numbers is: " << input1 + input2;
cout << "\n";
system("PAUSE");
return EXIT_SUCCESS;
}