When you have such a definition:
int variable = 253243243;
Can I somehow refer for example to the third digit in this number? Something along the lines of vector or array? I need this to compare whether a certain digit in the number corresponds to a different figure given by the user. Is it even possible?
You can extract digits with a combination of
%
and/
operations.Alternatively, you can print the number to a
string
usingstringstream
and extract digits as characters from the string:Alternatively, if you are lucky enough to use a C++11 conforming compiler, you can use std::string::to_string function instead of
std::stringstream
.