CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: sammysammy

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    887

    help on algorithm

    Hi,

    I need some help with an algorithm that can do the following.

    The method receives 3 input parameters:

    1. double sum;
    2. double[] shares;
    3. int decimals;
  2. Replies
    2
    Views
    1,170

    Re: String manipulation

    Possible solution:


    String str = "Welcome To Gameloft";
    String key = "el";
    String subStr = str.replace(key, "");
  3. Replies
    2
    Views
    919

    fastest way to find powers of two

    Hi!

    How fast algorithm can you write for finding out if an integer is a power of two?
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured