What is the way of keyboard input in C++?
This article introduces the relevant knowledge of "what is the way of keyboard input in C++". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!
1 、 cin
When using cin input, the program treats the input as a series of bytes. Each byte is interpreted as character encoding. Regardless of the data type, the input starts with character data, and then the cin object is responsible for converting the data to other types
For example
String name;std::cin > > name;std::cout