मराठी
महाराष्ट्र राज्य शिक्षण मंडळएचएससी विज्ञान (संगणक विज्ञान) इयत्ता १२ वी

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×