Calculate the product of three integers : int « Data Types « C++ Tutorial






#include <iostream> 

using std::cout; 
using std::cin; 
using std::endl;

int main()
{
   int x; 
   int y; 
   int z; 
   int result; 

   cout << "Enter three integers: "; 
   cin >> x >> y >> z; // read three integers from user
   result = x * y * z; 
   cout << "The product is " << result << endl; 

   return 0; 
}
Enter three integers: 1 2
3
The product is 6








2.1.int
2.1.1.Define an int variable
2.1.2.Define and assign int variables
2.1.3.Use arithmetic operator to get the product of two integers
2.1.4.Do calculation in cout
2.1.5.Convert gallons to liters
2.1.6.Calculate the product of three integers
2.1.7.Comparing integers using if statements, relational operators and equality operators.
2.1.8.Do bit operation on integers: AND, OR, XOR
2.1.9.simple FOR loop controlled by int type variable
2.1.10.lists cubes from 1 to 10: int type variable calculation
2.1.11.constant integer value
2.1.12.Calculate the value of product and quotient