Advertisements
Advertisements
प्रश्न
Give the output of the following method definition and also write what mathematical operation it carries out:
void test2(int a, int b)
{
while( a != b)
{
if ( a > b)
a = a − b;
else
a = b − a;
}
System.out.println(a);
}
if 4 and 17 are passed to the function.
थोडक्यात उत्तर
उत्तर
1
(The mathematical process performed is to display the HCF of two numbers).
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?