我正在尝试用 C++ 编写一个非常简单的程序,它可以找到两个数字的模数,如下所示:
#include <iostream>
using namespace std;
int n;
int d;
int modulus;
int main()
{
cout<<"***Welcome to the MODULUS calculator***";
cout<<"Enter the numerator, then press ENTER: ";
cin>>n;
cout<<"Enter the denominator, then press ENTER: ";
cin>>d;
modulus=n%d;
cout<<"The modulus is ---> "<<modulus;
return 0;
}
但是,当我尝试编译它时,我得到以下信息:
如何解决?
谢谢。