在类中使用模运算符或其他算术操作数时出现问题
您好,我在类方法函数中使用 % 运算符时遇到问题。控制台窗口会弹出,但当显示“”.exe 遇到问题需要关闭时会打开另一个窗口。有什么想法吗?这是我省略时工作正常的代码行。
r = gnumer % gden;
Hello im having an issue when using the % operator in my class method functions.The console window pop ups but then another window opens when saying " ".exe has encountered a problem and needs to close. any idea? Heres the line of code of when i omit works fine.
r = gnumer % gden;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
gden
是零吗?模数为零与除以零一样糟糕。Is
gden
zero? Modulus by zero is just as bad as dividing by zero.可能是因为 gden ==0,或者如果 gden 不是全局变量或静态变量,您是否忘记初始化它?
It may because gden ==0, or if gden is not a global or static variable, did you forget to initialize it?