I have a problem. I need to get two numbers and add them together in a way that one is the decimal point of the other. For example:
double number1 = 20;
double number2 = 142;
I need to add these numbers together to get 20.142. Is there a way to do this?
Thanks