Computes the lowest common denominator. : Int « Data Type « C++






Computes the lowest common denominator.

Computes the lowest common denominator.
 
#include <iostream>
using namespace std;

int main()
{
  int a, b, d, min;

  cout << "Enter two numbers: ";
  cin >> a >> b;

  min = a > b ? b : a;

  for(d = 2; d<min; d++) 
    if(((a%d)==0) && ((b%d)==0)) 
       break;
  if(d==min) {
    cout << "No common denominators\n";
    return 0;
  }
  cout << "The lowest common denominator is " << d << ".\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.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