<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'Need some Pseudocode help plz!' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'Need some Pseudocode help plz!' posted on the 'General programming' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Wed, 19 Jun 2013 07:33:15 -0700</pubDate>
    <lastBuildDate>Wed, 19 Jun 2013 07:33:15 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>Need some Pseudocode help plz!</title>
      <link>http://www.programmersheaven.com/mb/general/419232/419232/need-some-pseudocode-help-plz/</link>
      <description>I have started to write the pseudocode for this program but i have come to a dead end. I do not know how to continue this. Here is the question.&lt;br /&gt;
&lt;br /&gt;
Write a program that will read in five positive integers (one at a time) and print out the largest and smallest number of the five numbers. The program should read the numbers one at a time. Write the program such that it takes an unlimited amount of positive integers.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Start&lt;br /&gt;
   num number&lt;br /&gt;
   num ans&lt;br /&gt;
   num min&lt;br /&gt;
   num max&lt;br /&gt;
   num count = 0&lt;br /&gt;
&lt;br /&gt;
   output "How many numbers are you going to input?"&lt;br /&gt;
   input ans&lt;br /&gt;
   while count &amp;lt; ans&lt;br /&gt;
      output "Enter Number" count + 1&lt;br /&gt;
      input number&lt;br /&gt;
      if number &amp;lt; 0 then&lt;br /&gt;
        output "enter positive number"</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/general/419232/419232/need-some-pseudocode-help-plz/</guid>
      <pubDate>Wed, 20 Oct 2010 10:33:57 -0700</pubDate>
      <category>General programming</category>
    </item>
    <item>
      <title>Re: Need some Pseudocode help plz!</title>
      <link>http://www.programmersheaven.com/mb/general/419232/419561/re-need-some-pseudocode-help-plz/#419561</link>
      <description>if count = 0&lt;br /&gt;
{&lt;br /&gt;
max = number//the 1st number you enter is both the largest&lt;br /&gt;
min = number//and smallest number entered so far&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
if number &amp;gt; max&lt;br /&gt;
{&lt;br /&gt;
max = number&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
if number &amp;lt; min&lt;br /&gt;
{&lt;br /&gt;
min = number&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
Hope that helps&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/general/419232/419561/re-need-some-pseudocode-help-plz/#419561</guid>
      <pubDate>Sat, 06 Nov 2010 09:42:22 -0700</pubDate>
      <category>General programming</category>
    </item>
  </channel>
</rss>