我正在构建一个简单的计算器作为学习练习,但我偶然发现 - 我得到了第一个数字的用户输入,但它无法存储第二个输入的 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;
}