Need a little help with pseudocode

  • Thread starter Thread starter bsheltonihs
  • Start date Start date
AI Thread Summary
The discussion focuses on creating a nested For loop to display a multiplication table from 1 to 10, with a new line after every 10 items. The original pseudocode includes a "Write newline()" statement, which is deemed correct for the intended output. Participants suggest that experimenting with code is beneficial for learning and recommend proper indentation for clarity. They also clarify that while pseudocode can borrow from programming syntax, it should remain a high-level description of the algorithm. Overall, the guidance emphasizes understanding the logic rather than strictly adhering to specific programming language syntax.
bsheltonihs
Messages
3
Reaction score
0
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; nb2 < 11; nb2++)
Write nb1 * nb2 + " "
End For
Write newline( )
End For

Thanks for your help!
Brad
 
Physics news on Phys.org
Outputting the blank line seems to be in the right place. You'll learn a lot more by "trying and seeing" for yourself than by having someone look over it. Do you have a programming language for which you can try this out?

I wonder are there any online sites where a short program can be run? Anybody know?

As your programs get larger and more complicated, it will help comprehension (and reveal some mistakes) if you get into the habit of indenting individual blocks of code, to wit:
Code:
Declare nb1, nb2 As Int
For (nb1 = 1; nb1 < 11; nb1++)
    For (nb2 =1; nb2 < 11; nb2++)
        Write nb1 * nb2 + " "
    End For
    Write newline( )
End For

For the task at hand, you might need to add more detail to your line:
Code:
Write nb1 * nb2 + " "
 
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 pseudocode. So I took what i found and what i know to come up with the (Write newline " ").

for (int i = 1; i < 11; i++)
{
for(int j=1; j < 11; j++)
{
Console.Write( j * i + " ");
}
Console.Writeline();
}
 
In C++, you can either use the newline character "\n" or you can pass endl to cout:
Code:
cout << "some text" << endl;
// or
cout << "something\n";

For psuedocode, however, you generally don't want to actually write C++ code (or C# for that matter!), but rather a higher level description of the algorithm. You can borrow from a language's syntax, but really the way you write it is up to you, so the "write newline()" statement is fine.
 
Ok thanks for the help everyone!
 
Thread 'Have I solved this structural engineering equation correctly?'
Hi all, I have a structural engineering book from 1979. I am trying to follow it as best as I can. I have come to a formula that calculates the rotations in radians at the rigid joint that requires an iterative procedure. This equation comes in the form of: $$ x_i = \frac {Q_ih_i + Q_{i+1}h_{i+1}}{4K} + \frac {C}{K}x_{i-1} + \frac {C}{K}x_{i+1} $$ Where: ## Q ## is the horizontal storey shear ## h ## is the storey height ## K = (6G_i + C_i + C_{i+1}) ## ## G = \frac {I_g}{h} ## ## C...

Similar threads

Replies
3
Views
2K
Replies
17
Views
2K
Replies
12
Views
2K
Replies
1
Views
2K
Replies
7
Views
3K
Replies
11
Views
6K
Replies
2
Views
4K
Back
Top