I hve sme doubt in pseudo code
I hve created da flow chart and c++ code but I need to create pseudo code I dnt no hw to create it
Becz da flow chart hve 2 inputs such as cot=0, ans='y'
And 5 option such as add inquiry , view all inquiry ,find an inquiry, edit inquiry data, delete inquiry
And
For(b=0,b<cot,b++) pls help me

Recommended Answers

All 2 Replies

Hi,
Do you know what pseudocode is ? Read this: http://en.wikipedia.org/wiki/Pseudocode
or this link:
http://users.csc.calpoly.edu/~jdalbey/SWE/pdl_std.html

Lets try a simple:

set cot with 0
set ans with 'Y'
read option
case option of
    'A': add inquiry
    'V': view all inquiry
    'F': 
        read inquiry_number
        find inquiry with inquiry_number
    'E': edit inquiry
    'D':
        read inquiry_number
        delete inquiry with inquiry_number
endcase

You can particularize each operation starting from my example.

Would you please visit Vanna White and buy some vowels?

You will get better help when you write in a readable manner. Text-speak is not conducive to technical communication.

</rant>

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.