Recent content by bsheltonihs

  1. B

    Need a little help with pseudocode

    Ok thanks for the help everyone!
  2. B

    Need a little help with pseudocode

    It for a Prelude to programming class for C++. I know that for C# this below would be correct but I just was unsure of the correct way for pseudocode for C++ on how to correctly create a new line. I have looked over my textbook and on the web and i have found nothing on creating a new line in...
  3. B

    Need a little help with pseudocode

    I am trying to write a nested For loop to display multiplication table from 1*1 to 10*10 but I need to output a new line after 10 items. I have this written so far and was wondering if my "new line" statement was correct. Declare nb1, nb2 As Int For (nb1 = 1; nb1 < 11; nb1++) For (nb2 =1...
Back
Top