Forum: Computer Science Feb 10th, 2006 |
| Replies: 2 Views: 1,920 I have extensive programming experience, especially .net and the .netcompactframework which is what we need to develop in for that os.
Send me a pm and we can start a discussion on your needs. |
Forum: Computer Science Jan 17th, 2006 |
| Replies: 14 Views: 5,353 no because your chart says if it is not c then it can go to F without worrying about d. I had the c AND not d and changed it. Which means it is
While not(not c or d)
Thats dragged up some... |
Forum: Computer Science Jan 16th, 2006 |
| Replies: 14 Views: 5,353 which is almost the same as yours except i included the B (no biggie) and no extra variable needed hence performance should be marginally better. |
Forum: Computer Science Jan 16th, 2006 |
| Replies: 14 Views: 5,353 you missed out B!
Try
A
While c or not d
(
B
if not d then do E
)
F |
Forum: Computer Science Jan 16th, 2006 |
| Replies: 14 Views: 5,353 Ok now i am totally lost. Your initial post had c and C and d and D but now you say there is no C or D? Your initial post also said if c is true to skip B but now you are saying if c is true to do... |
Forum: Computer Science Jan 16th, 2006 |
| Replies: 14 Views: 5,353 I think i am with you now. i was confused between c and C and d and D. i take it A B C D E and F are some processes/functions etc. and c and d are flags?
In which case my pseudocode needs a... |
Forum: Computer Science Jan 15th, 2006 |
| Replies: 14 Views: 5,353 I think we both got confused. I wasnt too sure what A B C etc meant. Are they states in a state machine? Or just processes? also do they run though the flow once or keep repeating? I thought they... |
Forum: Computer Science Jan 15th, 2006 |
| Replies: 14 Views: 5,353 sorry should not be a while loop just another if statement
A
if not c then b
if not d
{
if not c then c
D
E
} |
Forum: Computer Science Jan 15th, 2006 |
| Replies: 14 Views: 5,353 First 2 are correct. last pseudocode is wrong.
I think it needs to be something like
A
if not c then b
while not d
{
if not c then c
D |