For a^b=(a X a X a X a.....X a) eg. for a=3, b=10 This can be written as 3^10 = (3^5)^2 Using this logic we can implement long long power(long long a, long long b){ long long res=1; while(b>0){ if(b%2==1)//Odd Number{ res*=a; } a*=a; b/=2; } return res; }
Instagram , a social networking site launched in October 2010 became extensively famous after 2015. Beside social networking nowadays it became a platform to promote various kinds of business and a mode of earning and of course to become famous on social media as a public figure. But it is only possible to those, who have extensively vast numbers of followers. After discussing to those who earns from instagram I found that there is generally 2 ways to increase/make instagram followers: Method 1: By Buying followers- you will find a large number of websites who claims to sell real followers by social marketing but 99% are fake. Method 2: By Following peoples- Maximum number of peoples uses this formula. First by following people than when these peoples follows back in return than by unfollowing them. Recently I have developed a script based on method 2, which will enable one to mass follow and unfollow people in one click. I have transformed this script to a chro...
Comments
Post a Comment