Pseudocode
Answered
Good morning,
I am a student of web development and as part of my studies I have to learn Pseudocode.
I have the student pack so I can have access to all the software.
I use Intellij IDEA for Java but I don't know how to configure the software for the pseudo code: and at this level I'm really beginner.
Many thank you for your help and your explanations to make a project in speudocode with syntactic coloring.
Have a Nice day.
Please sign in to leave a comment.
Can you give an example task that you need to do with the pseudocode? There is no specific language support for Pseudocode.
You can create your own file type where you define up to 4 types of language keywords, e.g. if/when/then, function/method etc, types of comments and use it for your pseudocode.
Many thanks Andrey.
This is enclosed an example(on French) :
-------
procédure créerliste ( n : entier ;) ;
Tab : tableau [1……..N] d’éléments de type t ;
j : entier ;
debproc
Pour j allant de 1 à n Faire
{ Ecrire ( " Donner la valeur de l’élément numéro :", j ) ;
Lire ( Tab [j] ; }
FinPour
finproc
----
An other example : Write a code that indicates whether or not a 'val' value provided by the user is in the list
Thanks. So as advised create custom file type for the pseudocode where you may define custom keywords for the pseudocode control flow statements.