Wednesday, March 16, 2016

Algoritham for GCD and LCD

gcd(a,b)
while(b!=0)
t=b
b=a%b;
a=t;

return a;

No comments:

Post a Comment

Speedup Android Studio

Go to Help ->Edit Custom VM Options, and chnge this 4 setting. After that close your Android Studio. This settings are for 8gb of ram pc...