<< Chapter < Page Chapter >> Page >

where the new_type portion is the keyword representing the type to which you want to cast the variable.

Example:

int iNum = 100;

float fNum;

fNum = float (inum);

If you do not explicitly cast a variable of one data type to another data type, then C++ will try to automatically perform the cast for you.

Program input using the cin object

So far, our programs have been limited in the sense that all their data must be defined within the program source code.

We will now learn how to write programs which enable data to be entered via the keyboard, while the program is running.

Such programs can be made to operate upon different data every time they run, making them much more flexible and useful.

Standard input stream

The cin object reads in information from the keyboard via the standard input stream.

The extraction operator (>>) retrieves information from the input stream.

When the statement cin>>num1; is encountered, the computer stops program execution and accepts data from the keyboard. The user responds by typing an integer (or float) and then pressing the Enter key (sometimes called the Return key) to send the number to the computer. When a data item is typed, the cin object stores the integer (or float) into the variable listed after the>>operator.

The cin and cout stream objects facilitate interaction between the user and the computer. Because this interaction resembles a dialogue, it is often called conversational computing or interactive computing.

Example

#include<iostream.h>

int main()

{

int integer1, integer2, sum; // declaration

cout<<"Enter first integer\n"; // prompt

cin>>integer1; // read an integer

cout<<"Enter second integer\n"; // prompt

cin>>integer2; // read an integer

sum = integer1 + integer2;

cout<<"Sum is "<<sum<<endl;

return 0; // indicate that program ended successfully

}

The output of the above program:

Enter the first integer

45

Enter the second integer

72

Sum is 117

Example

#include<iostream.h>

int main()

{

int integer1, integer2, sum; // declaration

cout<<"Enter two integers\n"; // prompt

cin>>integer1>>integer2; // read two integers

sum = integer1 + integer2;

cout<<"Sum is "<<sum<<endl;

return 0;

}

The output of the above program:

Enter two integers

45 72

Sum is 117

Symbolic constants

C++ introduces the concept of a named constant that is just like a variable, except that its value cannot be changed. The qualifier const tells the compiler that a name represents a constant. Any data type, built-in or user-defined, may be defined as const. If you define something as const and then attempt to modify it, the compiler will generate an error.

To define a constant in a program, we use const declaration qualifier.

Example:

const float PI = 3.1416;

const double SALESTAX = 0.05;

const int MAXNUM = 100;

Once declared, a constant can be used in any C++ statement in place of the number it represents.

Example

// this program calculates the circumference of a circle

// given its radius

#include<iostream.h>

int main()

{

const float PI = 3.1416

float radius, circumference;

radius = 2.0;

circumference = 2.0 * PI * radius;

Questions & Answers

what is biology
Hajah Reply
the study of living organisms and their interactions with one another and their environments
AI-Robot
what is biology
Victoria Reply
HOW CAN MAN ORGAN FUNCTION
Alfred Reply
the diagram of the digestive system
Assiatu Reply
allimentary cannel
Ogenrwot
How does twins formed
William Reply
They formed in two ways first when one sperm and one egg are splited by mitosis or two sperm and two eggs join together
Oluwatobi
what is genetics
Josephine Reply
Genetics is the study of heredity
Misack
how does twins formed?
Misack
What is manual
Hassan Reply
discuss biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles
Joseph Reply
what is biology
Yousuf Reply
the study of living organisms and their interactions with one another and their environment.
Wine
discuss the biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles in an essay form
Joseph Reply
what is the blood cells
Shaker Reply
list any five characteristics of the blood cells
Shaker
lack electricity and its more savely than electronic microscope because its naturally by using of light
Abdullahi Reply
advantage of electronic microscope is easily and clearly while disadvantage is dangerous because its electronic. advantage of light microscope is savely and naturally by sun while disadvantage is not easily,means its not sharp and not clear
Abdullahi
cell theory state that every organisms composed of one or more cell,cell is the basic unit of life
Abdullahi
is like gone fail us
DENG
cells is the basic structure and functions of all living things
Ramadan
What is classification
ISCONT Reply
is organisms that are similar into groups called tara
Yamosa
in what situation (s) would be the use of a scanning electron microscope be ideal and why?
Kenna Reply
A scanning electron microscope (SEM) is ideal for situations requiring high-resolution imaging of surfaces. It is commonly used in materials science, biology, and geology to examine the topography and composition of samples at a nanoscale level. SEM is particularly useful for studying fine details,
Hilary
cell is the building block of life.
Condoleezza Reply
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Programming fundamentals in c++. OpenStax CNX. Jul 29, 2009 Download for free at http://cnx.org/content/col10788/1.1
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Programming fundamentals in c++' conversation and receive update notifications?

Ask