psuedocode is a way of organizing a program before you write it. There isn't really a set standard for it. Instead of writing a program in C write it in english.
if (the choice is equal to five)
{
printf("output reponse to user");
}
Doing this helps you to understand what your code will do and where before you actually write the program
Wiki User
∙ 2009-12-15 18:15:10Pseudocode.
X**y
Pseudocode is a statement which is not language specific, Psuedocode is not syntax related, consider it a plan for the algorithm, algorithm requires perfect syntax.
The indentation doesn't affect the "logic" of the program, however it would make it make harder to read and the purpose of pseudocode is to be read.
give me some of the example program of programing
Develop an algorithm to display all prime numbers from 2 to 100. Give both the pseudocode version and the flowchart version. Convert your pseudocode into a Java program.
Give a business example of how loops can be beneficial in a program?
# Algorithm # Pseudocode # Code
Pseudocode.
T. E. Bailey has written: 'Program design with pseudocode' -- subject(s): Programming, Electronic digital computers, Electronic digitalcomputer, Pseudocode (Computer program language)
X**y
Pseudocode is a statement which is not language specific, Psuedocode is not syntax related, consider it a plan for the algorithm, algorithm requires perfect syntax.
palawan
The indentation doesn't affect the "logic" of the program, however it would make it make harder to read and the purpose of pseudocode is to be read.
give me some of the example program of programing
The indentation doesn't affect the "logic" of the program, however it would make it make harder to read and the purpose of pseudocode is to be read.
No. Pseudocode is not used to write complete programs; rather, it is an overview of what you want to achieve. For example, the following pseudocode is for a program to print a list of square roots: for i = 1 to 10 show i, i*i A specific programming language may not have a "show" command, and the structure of the "for" loop might be different; additional setup and cleanup commands may also be required in a real computer program; the purpose of this pseudoce is merely to explain, to a human, what you want to achieve. The real code, with more detail, will have to be added later.