We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
classResult{/* * Complete the 'viralAdvertising' function below. * * The function is expected to return an INTEGER. * The function accepts INTEGER n as parameter. */publicstaticintviralAdvertising(intn){// Write your code hereinttotal=0;intrecip=5;for(inti=1;i<=n;i++){intdiv=recip/2;total+=div;intmul=div*3;recip=mul;}returntotal;}}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Viral Advertising
You are viewing a single comment's thread. Return to all comments →
Simple Java Code