हिंदी

Impliment class GCD which have member function (a/c), which calculate greatest common divisor of two number entered during program execution. Print( ) will Print GCD of two number. - Computer Science 1

Advertisements
Advertisements

प्रश्न

Impliment class GCD which have member function (a/c), which calculate greatest common divisor of two number entered during program execution. Print( ) will Print GCD of two number.

उत्तर

#include<iostream.h>
class gcd
{
int a, b;
public :
void print ( );
};
void gcd :: print (void)
{
cin >> a >> b;
while (a ! = b)
{
if (a > b)
a – = b;
if (b>a)
b – = a;
}
cout << a;
void main ( )
{
gcd obj;
obj.print ( );
}
shaalaa.com
C++ Programming
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2016-2017 (March)

APPEARS IN

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×