The question asks you to round up the answer to the nearest whole number. I've used round() but my ans is 66 instead of 67 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

The question asks you to round up the answer to the nearest whole number. I've used round() but my ans is 66 instead of 67

#include <iostream> #include <cmath> using namespace std; int main() { int houses; cin>>houses; int a ; a = 200 / houses ; cout << round(a) ; return 0; }

13th Dec 2021, 3:07 AM
Kruti
Kruti - avatar
4 Answers
+ 6
Kruti Have you also changed one of the operand ( 200 or houses ) to double/float ? If yes then try using ceil () instead to round UP floating point number. https://en.cppreference.com/w/c/numeric/math/ceil
13th Dec 2021, 3:23 AM
Arsenic
Arsenic - avatar
+ 4
double a = 200.0 / houses. round() doesn't help if you define <a> as `int`, cause `int` doesn't care about fractionals, there is no decimal point to consider for rounding the number.
13th Dec 2021, 3:13 AM
Ipang
+ 2
Arsenic thank you so much! I tried ceil() yesterday but didn't use double houses. It is correct now.
13th Dec 2021, 3:41 AM
Kruti
Kruti - avatar
+ 1
Ipang I tried with double a. Still the answer is 66. How do I round it up to the largest number? Right now 66.3 is rounded off as 66 but the question asks to round it off as 67
13th Dec 2021, 3:17 AM
Kruti
Kruti - avatar