Connecting Tech Pros Worldwide Forums | Help | Site Map

example of a logic bug using pseudocode

popeyerayaz
Guest
 
Posts: n/a
#1: Jul 22 '08
I want run this by the group for correctness.
The question is as follows:

9. Present an example of a logic bug using pseudocode and explain your
answer. (10 points)


Temperature = 70
if (Temperature >69) and (Temperature < 100 )
THEN
openWindows;
Will work because if temperature is higher than 69 degrees and
temperature is lower than 100 degrees windows will open.
2. Gentlemen, after reading your advise I had run the code in C++,
then stated it back in pseudocode. I suppose the programmer could
mistakenly use the "AND" && operator instead of the "OR" || operator
which I found the latter to run a loop which I couldn't end, not even
with a ctrl-c, and had to push the power button in to turn off my
computer (please keep that in mind). Also found that the temperatures
reflected would better reflect opening the windows and not closing
them.

Temperature = 70
if (Temperature >69) and (Temperature < 100 )
THEN
openWindows;
Will work because if temperature is higher than 69 degrees and
temperature is lower than 100 degrees windows will open.

The code generated: numbered list 70-99

------------------------------------------------------------------------------------------------------------------------------------------------------

Temperature = 70
if (Temperature >69) or (Temperature < 100 )
THEN
openWindows;

Won't work because windows will stay closed due to temperature will
always be under 100 degrees the fault lies with the "or" "||" operator
which was used instead of the "and" (&&) operator.
The code generated: an infinite loop of never ending numbers that
crashed my computer.

Thank You,

Ray The code generated: numbered list

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Temperature = 70
if (Temperature >69) or (Temperature < 100 )
THEN
openWindows;

Won't work because windows will stay closed due to temperature will
always be under 100 degrees the fault lies with the "or" "||" operator
which was used instead of the "and" (&&) operator.
The code generated: an infinite loop of never ending numbers that
crashed my computer.

Thank You,

Ray

Richard Heathfield
Guest
 
Posts: n/a
#2: Jul 22 '08

re: example of a logic bug using pseudocode


popeyerayaz said:

<snip>
Quote:
I suppose the programmer could
mistakenly use the "AND" && operator instead of the "OR" || operator
which I found the latter to run a loop which I couldn't end, not even
with a ctrl-c, and had to push the power button in to turn off my
computer (please keep that in mind).
Modern multi-tasking computer systems generally provide some way to
terminate a process from outside the process itself. For example, on
Windows you could have brought up the Task Manager (Ctrl-Alt-Del
nowadays), identified the process, selected it, and terminated it. Under
Linux, you could have used ps -eaf | grep <tasknameto find the task's
process ID (pid) and then used kill -9 <pidto terminate the task.

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Nick Keighley
Guest
 
Posts: n/a
#3: Jul 22 '08

re: example of a logic bug using pseudocode


On 22 Jul, 06:55, popeyerayaz <popeyera...@gmail.comwrote:

your post is very confusing
Quote:
I want run this by the group for correctness.
The question is as follows:
>
9. Present an example of a logic bug using pseudocode and explain your
answer. (10 points)
>
Temperature = 70
*if (Temperature >69) and (Temperature < 100 )
* * * * THEN
* * openWindows;
else
openLinux

:-)

Quote:
Will work because if temperature is higher than 69 degrees and
temperature is lower than 100 degrees windows will open.
2. Gentlemen, after reading your advise [advice?] I had run the code in C++,
what gentlemen? what advice?

Quote:
then stated it back in pseudocode. I suppose the programmer could
mistakenly use the "AND" && operator instead of the "OR" || operator
which I found the latter to run a loop which I couldn't end,
how the hell can the above p-code loop??!

Quote:
not even
with a ctrl-c, and had to push the power button in to turn off my
computer (please keep that in mind).
I think you need a new computer.
Quote:
Also found that the temperatures
reflected would better reflect opening the windows and not closing
them.
what does "temperature reflected" mean? The code you've posted
doesn't close windows.

Quote:
Temperature = 70
*if (Temperature >69) and (Temperature < 100 )
* * * * THEN
* * openWindows;
Will work because if temperature is higher than 69 degrees and
temperature is lower than 100 degrees windows will open.
why did you post this twice?

Quote:
The code generated: numbered list 70-99
what?

Quote:
---------------------------------------------------------------------------*---------------------------------------------------------------------------
>
Temperature = 70
*if (Temperature >69) or (Temperature < 100 )
* * * * THEN
* *openWindows;
>
Won't work because windows will stay closed due to temperature will
always be under 100 degrees the fault lies with the "or" "||" operator
which was used instead of the "and" (&&) operator.
The code generated: *an infinite loop of never ending numbers that
crashed my computer.
there is no loop in the above code


Quote:
Thank You,
>
Ray The code generated: numbered list
>
---------------------------------------------------------------------------*---------------------------------------------------------------------------*---------------------------
>
Temperature = 70
*if (Temperature >69) or (Temperature < 100 )
* * * * THEN
* *openWindows;
>
Won't work because windows will stay closed due to temperature will
always be under 100 degrees the fault lies with the "or" "||" operator
which was used instead of the "and" (&&) operator.
The code generated: *an infinite loop of never ending numbers that
crashed my computer.
>
Thank You,
>
Ray
why did you post this twice?


--
Nick Keighley



Richard
Guest
 
Posts: n/a
#4: Jul 22 '08

re: example of a logic bug using pseudocode


Nick Keighley <nick_keighley_nospam@hotmail.comwrites:
Quote:
On 22 Jul, 06:55, popeyerayaz <popeyera...@gmail.comwrote:
>
your post is very confusing
>
Quote:
>I want run this by the group for correctness.
>The question is as follows:
>>
>9. Present an example of a logic bug using pseudocode and explain your
>answer. (10 points)
>>
>Temperature = 70
>Â*if (Temperature >69) and (Temperature < 100 )
>Â* Â* Â* Â* THEN
>Â* Â* openWindows;
>
else
openLinux
>
:-)
>
>
Quote:
>Will work because if temperature is higher than 69 degrees and
>temperature is lower than 100 degrees windows will open.
>2. Gentlemen, after reading your advise [advice?] I had run the code in C++,
>
what gentlemen? what advice?
>
>
Quote:
>then stated it back in pseudocode. I suppose the programmer could
>mistakenly use the "AND" && operator instead of the "OR" || operator
>which I found the latter to run a loop which I couldn't end,
>
how the hell can the above p-code loop??!
>
>
Quote:
>not even
>with a ctrl-c, and had to push the power button in to turn off my
>computer (please keep that in mind).
>
I think you need a new computer.
>
Quote:
>Also found that the temperatures
>reflected would better reflect opening the windows and not closing
>them.
>
what does "temperature reflected" mean? The code you've posted
doesn't close windows.
>
>
Quote:
>Temperature = 70
>Â*if (Temperature >69) and (Temperature < 100 )
>Â* Â* Â* Â* THEN
>Â* Â* openWindows;
>Will work because if temperature is higher than 69 degrees and
>temperature is lower than 100 degrees windows will open.
>
why did you post this twice?
>
>
Quote:
>The code generated: numbered list 70-99
>
what?
Is the sole reason for your reply to be rude, obnoxious and generally
show off? If so, well done. 10/10.
Kenny McCormack
Guest
 
Posts: n/a
#5: Jul 22 '08

re: example of a logic bug using pseudocode


In article <g64eb9$tm8$3@registered.motzarella.org>,
Richard <rgrdev@gmail.comresponded to that jerky Nick Keighley
<nick_keighley_nospam@hotmail.comthusly:
....
Quote:
>Is the sole reason for your reply to be rude, obnoxious and generally
>show off? If so, well done. 10/10.
Of course it is. Is there (quite seriously) any other reason to post to
clc?

(And you should have seen the smile on his face when he did it...)

rahul
Guest
 
Posts: n/a
#6: Jul 22 '08

re: example of a logic bug using pseudocode


On Jul 22, 10:55*am, popeyerayaz <popeyera...@gmail.comwrote:
<snip>
You aren't making much sense. Please re-phrase your question in a way
that everyone can understand it. And try posting to the point.
Nick Keighley
Guest
 
Posts: n/a
#7: Jul 22 '08

re: example of a logic bug using pseudocode


On 22 Jul, 11:55, Richard<rgr...@gmail.comwrote:
Quote:
Nick Keighley <nick_keighley_nos...@hotmail.comwrites:
Quote:
On 22 Jul, 06:55, popeyerayaz <popeyera...@gmail.comwrote:
>
Quote:
your post is very confusing
>
Quote:
Quote:
I want run this by the group for correctness.
The question is as follows:
>
Quote:
Quote:
9. Present an example of a logic bug using pseudocode and explain your
answer. (10 points)
>
Quote:
Quote:
Temperature = 70
*if (Temperature >69) and (Temperature < 100 )
* * * * THEN
* * openWindows;
>
Quote:
else
* * openLinux
>
Quote:
:-)
>
Quote:
Quote:
Will work because if temperature is higher than 69 degrees and
temperature is lower than 100 degrees windows will open.
2. Gentlemen, after reading your advise [advice?] I had run the code in C++,
>
Quote:
what gentlemen? what advice?
>
Quote:
Quote:
then stated it back in pseudocode. I suppose the programmer could
mistakenly use the "AND" && operator instead of the "OR" || operator
which I found the latter to run a loop which I couldn't end,
>
Quote:
how the hell can the above p-code loop??!
>
Quote:
Quote:
not even
with a ctrl-c, and had to push the power button in to turn off my
computer (please keep that in mind).
>
Quote:
I think you need a new computer.
>
Quote:
Quote:
Also found that the temperatures
reflected would better reflect opening the windows and not closing
them.
>
Quote:
what does "temperature reflected" mean? The code you've posted
doesn't close windows.
>
Quote:
Quote:
Temperature = 70
*if (Temperature >69) and (Temperature < 100 )
* * * * THEN
* * openWindows;
Will work because if temperature is higher than 69 degrees and
temperature is lower than 100 degrees windows will open.
>
Quote:
why did you post this twice?
>
Quote:
Quote:
The code generated: numbered list 70-99
>
Quote:
what?
>
Is the sole reason for your reply to be rude, obnoxious and generally
show off? If so, well done. 10/10.- Hide quoted text -
oh course. :-)

if he wants help (I assume that's why he posted to comp.lang.c)
then he's going to have to ask a clear question. His post seemed
to be part of a longer converstation or had been extracted from
another post. I found it unclear. Perhaps if he asked a clear
question he'd get better help. Improving his ability to ask
questions might even make him a better programmer.

What was your reason for posting?


--
Nick Keighley

When it comes to feeding trolls, taking offense at their posts is
like serving them Lobster Thermidor aux Crevettes with Mornay sauce
served in a Provencale manner with shallots and aubergines garnished
with truffle pate, brandy and with a fried egg on top and Spam.
vippstar@gmail.com
Guest
 
Posts: n/a
#8: Jul 23 '08

re: example of a logic bug using pseudocode


On Jul 22, 2:57 pm, Nick Keighley <nick_keighley_nos...@hotmail.com>
wrote:
<snip reply to troll>
Quote:
What was your reason for posting?
Trolling.
Quote:
When it comes to feeding trolls, taking offense at their posts is
like serving them Lobster Thermidor aux Crevettes with Mornay sauce
served in a Provencale manner with shallots and aubergines garnished
with truffle pate, brandy and with a fried egg on top and Spam.
s/taking offense/replying
Closed Thread