cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
How do you write arrays and for loops in
How do you write arrays and for loops in pseudocode
Aug 23, 2015 at 2:46pm UTC
cppdummies
(2)
How do you write this code in pseudocode? Please help!
int a_num[4];
for (int n = 0; n <= 3; n ++)
a_num[n] = b_num % 10;
b_num = b_num / 10;
Aug 23, 2015 at 4:16pm UTC
kevinkjt2000
(1063)
Pseudocode is an artificial and
informal
language
http://www.unf.edu/~broggio/cop2221/2221pseu.htm
Pseudocode is an
informal
high-level description of the operating principle of a computer program or other algorithm.
https://en.wikipedia.org/wiki/Pseudocode
Basically you just take away the formality of formal code and you have pseudocode.
Topic archived. No new replies allowed.