Mahar Asif Lak
Mahar Asif Lak

Reputation: 3

I want to know how to write pseudo code of a program for Raptor programming language?

I have a program and i have to write its pseudo code and it will be implemented in Raptor Language. I am confused that how to write its pseudo code. I know how to write pseudo code in c++ but want to ask that Raptor's pseudo code is same like C++ and other languages or its different because Raptor work in flow charts Here is the problem just give a little example of pseudo code for it Thanks need help with writing pseudo code

Create and load an array with the following 7 values. Add one more word (of your own choosing) for a total of 8 words.

biff comely fez mottle peruke bedraggled quisling

Create a second array (parallel array). To hold the defintions to these words. You will need to look up the definitions.

Ask the user to enter a word

Upvotes: -4

Views: 1314

Answers (1)

Caleb
Caleb

Reputation: 125007

Pseudocode isn't really language-specific. People often adopt the conventions of their target language to make their pseudocode align more closely with the way the language works, but the main idea is to get the high-level steps that the code should follow down on paper without worrying too much about the syntactic details. Since Raptor is a flowchart-based language, and since (like pseudocode) flowcharts are traditionally used to plan out how a program should work, a pseudocode description of a Raptor program should probably look like a flowchart, but without worrying about the details of Raptor's flowchart syntax.

Upvotes: 0

Related Questions