Declaring Variables in C++

Declaring Variables in C++

Say you want to store data for temporary use in a program. You will have to declare variables to input the data. Luckily, declaring variables in C++ is very easy. This simple program gets the user’s age as input and displays it back to the screen. Here is the source code:

#include using namespace std;int main(){   int age;   cout << "My Second C++ Program" <&lt' endl;   cout << "Please enter your age in years followed by : ";   cin >> age;   cout << "
You are " << age << " years old." << endl;   return 0;}

To declare the variable "age," simply type the data type (int) in front of it. Notice that you can specify the type of data you want the function main to return.This next program uses a few more variables. It retrieves the user's age, as well as their height, weight, hair color, and eye color.

#include #include using namespace std;int main(){   int age, feet, inches, pounds;   string hair, eye;   cout << "My third c++ program.

";   cout << "Please type your answer to each question"        << "followed by ." << endl;   cout << "What is your age (years)? ";   cin >> age;   cout << "
How tall are you (ft in)? ";   cin >> feet >> inches;   cout << "
How much do you weigh (lbs)? ";   cin >> pounds;   cout << "
What color is your hair? ";   cin >> hair;   cout << "
What color are your eyes? ";   cin >> eye;   cout << endl << "
You are " << age << " years old, "        << feet << " feet " << inches << " inches tall."         << "
Youweigh " << pounds << " pounds,        << " have " << hair << " colored hair and "        << eye << " colored eyes." << endl;   return 0;}

Notice that it's possible to declare different variables of the same type in one line. Simply separate them by a comma. The previous code also includes a file called string and uses strings to store characters.

A note about data-handling and error detection: when you have an integer as a variable, there is nothing you can do to prevent a user from trying to enter invalid data.

Share the Post:
XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes

ransomware cyber attack

Why Is Ransomware Such a Major Threat?

One of the most significant cyber threats faced by modern organizations is a ransomware attack. Ransomware attacks have grown in both sophistication and frequency over the past few years, forcing

data dictionary

Tools You Need to Make a Data Dictionary

Data dictionaries are crucial for organizations of all sizes that deal with large amounts of data. they are centralized repositories of all the data in organizations, including metadata such as