Conversion between numbers using cast
Although there are several numeric data types available in C++, you only need to manipulate integers (int) and floating point numbers (double).
In the last exercise, you converted an integer to a double by appending .0 at the end. However, you can also use casting to change the data types.
यह अभ्यास पाठ्यक्रम का हिस्सा है
Optimizing R Code with Rcpp
अभ्यास निर्देश
- Load the
Rcpppackage. - Evaluate
17 / 2in C++ withevalCpp(). - Cast 17 to a
doubleand divide it by 2. - Cast 56.3 to an
int.
इंटरैक्टिव व्यावहारिक अभ्यास
इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।
# Load Rcpp
___
# Evaluate 17 / 2 in C++
___
# Cast 17 to a double and divide by 2
___
# Cast 56.3 to an int
___