我需要使用C++
舍入一些输入数字。以下是我的代码。 `
#include <iostream>
#include <math.h>
using namespace std;
int main() {
int a;
int b;
int c;
cin >> a;
for (int i =0; i<a; i++) {
cin >> b;
cin >> c;
int result = b/c;
if (result > 0) {
cout << floor(result + 0.5) << " ";
} else {
cout << ceil(result - 0.5) << " ";
}
}
}
然而,我总是得到太低的答案。
示例输入:
15
6525 1410
14431 510
9163 480
5461 1938
6969 1220
-7065150 -4171886
-9268414 -1461265
17913 584
-32381 -634679
19887 1666
5133363 4488942
5440267 601
4700414 923
4699610 15
4322342 201
输出:4 28 19 2 5 1 6 30 -0 11 1 9052 5092 313307 21504
预期:5 28 19 3 6 2 6 31 0 12 1 9052 5093 313307 21504
我做错了什么? (为什么我在其中一个上得到负零?)
答案 0 :(得分:2)
你在int中进行除法,而不是浮点数。你可以这样做来修复:
double result = static_cast<double>(b)/c;
并且最好使用floor也值为0以避免负零,即
if (result >= 0.0) {
答案 1 :(得分:0)
另一个问题,除了将除法作为整数除法之外,正如另一个答案所指出的那样,你应该使用std::round(3)。手动添加/减去.5容易出现舍入错误,当std::round
为您完成工作时,没有理由重新发明轮子。