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

Search:

Type: Posts; User: skidrive

Search: Search took 0.03 seconds.

  1. Replies
    6
    Views
    855

    Re: nested for loops

    i do not know.
    The straight forward approach would be:

    1) a = x/a;
    2) b = (x%a)/b
    3) c = ((x%a)%c)/d
    ...


    But that doesnt work, as you have to be able to "undo" the algorithm, when you...
  2. Replies
    4
    Views
    2,072

    Re: issue with asm intel syntax

    in vs this would work:





    only on x86 system, ofcourse.
  3. Replies
    6
    Views
    855

    nested for loops

    hi,

    i am currently trying to teach my self c++. Workign fin so far, but now i have hit a break with this problem:
    (translated by me, sorry)

    1) you are given a large number x and a subset of...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured