C++ 两个数如何相加
两个数字相加
学习如何在 C++ 中两个数字相加:
通过用户输入两个数字进行相加
在本例中,通过用户输入两个数字。然后我们计算(相加)两个数字来打印总和:
实例
int x, y;
int sum;
cout << "Type a number: ";
cin >> x;
cout << "Type another number: ";
cin >>
y;
sum = x + y;
cout << "Sum is: " << sum;
运行实例 »