C++ 实例 - 求商及余数
使用 C++ 获取用户的输入两个数字,并将两个数字相除,然后将商和余数输出到屏幕:
#include <iostream> using namespace std; int main() { int divisor, dividend, quotient, remainder; cout << "输入被除数: "; cin >> dividend; cout << "输入除数: "; cin >> divisor; quotient = dividend / divisor; remainder = dividend % divisor; cout << "商 = " << quotient << endl; cout << "余数 = " << remainder; return 0; }
以上程序执行输出结果为:
输入被除数: 13 输入除数: 4 商 = 3 余数 = 1
版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com