Posts by Renan Monteiro • 9 points
2 posts
-
-1
votes1
answer45
viewsQ: Doubt in the use of the to_string function
In an exercise that I’m doing, it was proposed to read two numbers, an integer and a real, and count how many digits they have. Entry and exit should be like this: Entre com o numero inteiro: 2345…
-
1
votes1
answer664
viewsQ: How to create one class inside the other in C++?
I need to create one class inside the other in C++ For example: I already have the Calculator class created. I need to insert the Operator class within it. How should I create it? How will the…