Using cin Object to Read Integer Values from Keyboard : Int « Data Type « C++






Using cin Object to Read Integer Values from Keyboard

  
#include <iostream>

using namespace std;

int main(){
   int a = 0, b = 0, c = 0;

   cout << "Enter values for a, b, and c: ";
   cin >> a >> b >> c;
   cout << a << " " << b << " " << c << endl;

   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.addition operator in coutaddition operator in cout
3.Define, input and output int valueDefine, input and output int value
4.Computes the lowest common denominator.Computes the lowest common denominator.
5.Inputting int Values for Multiple VariablesInputting int Values for Multiple Variables
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