You now understand variables and data types in C++.
Variables store data with a name and type
int for whole numbers, double for decimals, char for characters, bool for true/false
string holds text of any length
Choose the right type for your data to avoid bugs
Good job. You can now store data. Next, you will learn how to get data from users and display results with proper formatting.