Inputting int Values for Multiple Variables : Int « Data Type « C++






Inputting int Values for Multiple Variables

Inputting int Values for Multiple Variables
 
#include <iostream>
using namespace std;
int main(void)
{
   int myWeight, myHeight;
   string myName;
   cout << "Enter your name: ";
   cin >> myName;
   cout << "Enter your weight in pounds: ";
   cin >> myWeight;
   cout << "Enter your height in inches: ";
   cin >> myHeight;
   cout << "Your name score is " << myName << "\n";
   cout << "Your weight in pounds is " << myWeight << "\n";
   cout << "Your height in inches is " << myHeight << "\n";
   return 0;
}

           
         
  








Related examples in the same category

1.cout: output INT_MIN, INT_MAX and UINTcout: output INT_MIN, INT_MAX and UINT
2.Using cin Object to Read Integer Values from Keyboard
3.addition operator in coutaddition operator in cout
4.Define, input and output int valueDefine, input and output int value
5.Computes the lowest common denominator.Computes the lowest common denominator.
6.Divided by intDivided by int
7.Int value operationsInt value operations
8.convert string (char) to int
9.Integer pointer
10.Using atoi: convert string to int