I was shoulder surfing this guy working at the bank, the software that they were using was some console based so-not-fancy one. From that he was editing the credits or transfers. Anyway it was a console input with something like the following
id:
transaction:
deposit:
withdraw:
(He was using tabs to direct the cursor to the next field)
Something like the above. I am wondering if taking multiple input like that is possible with C++, and if so how? Usually console based programming goes like this
enter username: *presses enter*
*enter password pops up*
It would be more convenient to do just this
enter username:*write here then press tab*
enter password: *fill this too and press enter*
Both value to the input stream. It was almost like form fields, and it would be so more convenient to do that. For the time being, I am mirroring a console based ATM machine like program, and there it asks for username and THEN password, however It would be more convenient if it was to take multiple input and send them all to the input stream at once. What are my options with this? I've googled already, most results that come up are not what I'm looking for