3
It is not possible. The cin
is made for basic use, for experimentation, minimal interaction without ceremony. If you want to have total control over the data entry you will have to write a code that does the control the way you want, which is not simple to do right. C++ is not a ready-to-use language, and it’s rare to have external libraries that aren’t too generic.
It would be interesting to post the code instead of the code image. So you increase the interest of people to help you.
– Andrei Coelho
Put this code in place of the FIRST image.
– Andrei Coelho
It’s perfect! It’ll be easier for someone to help you now.
– Andrei Coelho
ready, I just want when the "Cin" reads the value not skip a line or is continue in the same line
– H3athCl1ff
Avoid line breaking with
cin
is not possible. Or it is all like astring
and parses each part of the date or implements a read based ongetch
– Isac