#include using namespace std; int main() { double num=1.6; // Round the number by adding .5 and converting to an // integer. double round=num+.5; int i=round; cout << i << endl; cout << round << endl; cout << (int) round << endl; return 0; }