<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'PIPPIN' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'PIPPIN' posted on the 'New programming languages' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Wed, 19 Jun 2013 11:11:56 -0700</pubDate>
    <lastBuildDate>Wed, 19 Jun 2013 11:11:56 -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>PIPPIN</title>
      <link>http://www.programmersheaven.com/mb/languages/342162/342162/pippin/</link>
      <description>who can write a program for the following:&lt;br /&gt;
&lt;br /&gt;
W = X + Y * 3  if x to value of 6 and Y to 9&lt;br /&gt;
&lt;br /&gt;
W = x/4+y * 36y/x     x to value of 18 and y to 2&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/languages/342162/342162/pippin/</guid>
      <pubDate>Sun, 30 Jul 2006 07:56:38 -0700</pubDate>
      <category>New programming languages</category>
    </item>
    <item>
      <title>Re: PIPPIN</title>
      <link>http://www.programmersheaven.com/mb/languages/342162/342391/re-pippin/#342391</link>
      <description>&lt;strong&gt;&lt;span style="color: Red;"&gt;This message was edited by DrMarten at  2006-8-3 12:30:42&lt;/span&gt;&lt;/strong&gt;&lt;hr /&gt;&lt;br /&gt;
&lt;br /&gt;
: who can write a program for the following:&lt;br /&gt;
: &lt;br /&gt;
: W = X + Y * 3  if x to value of 6 and Y to 9&lt;br /&gt;
: &lt;br /&gt;
: W = x/4+y * 36y/x     x to value of 18 and y to 2&lt;br /&gt;
&lt;br /&gt;
__________________________________________________
_____________________&lt;br /&gt;
&lt;br /&gt;
Hi,&lt;br /&gt;
&lt;br /&gt;
Are you treating these as two separate problems or&lt;br /&gt;
simultaneous equations?&lt;br /&gt;
&lt;br /&gt;
VB.Net code&amp;gt;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
Dim x As Integer
Dim y As Integer
Dim w As Integer

For x=1 To 6
For y=1 to 9

W = X + Y * 3 'Is this the order you want it in?
textbox1.AppendText(" W= " &amp;amp; CStr(w))
textbox1.AppendText(" when x= " &amp;amp; CStr(x))
textbox1.AppendText(" and  y= " &amp;amp; CStr(y) &amp;amp; VBCrLf &amp;amp; VBCrLf)

Next
Next
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
Is that what you are after?&lt;br /&gt;
&lt;br /&gt;
For the 2nd equation&amp;gt;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
VB.Net code&amp;gt;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
Dim x As Double
Dim y As Double
Dim w As Double

For x=1 To 18
For y=1 to 2

W =(x/(4+y)) * ((36*y)/x)) 'Is this the order you want it in?
textbox1.AppendText(" W= " &amp;amp; CStr(w))
textbox1.AppendText(" when x= " &amp;amp; CStr(x))
textbox1.AppendText(" and  y= " &amp;amp; CStr(y) &amp;amp; VBCrLf &amp;amp; VBCrLf)

Next
Next
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Put either section of code in a button click event Sub&lt;br /&gt;
and don't forget to add a textbox with MultiLine property&lt;br /&gt;
set to True and vertical scrollbar property set.&lt;br /&gt;
&lt;br /&gt;
Download the EXPRESS edition for FREE here&amp;gt;&amp;gt;&lt;br /&gt;
&lt;a href="http://msdn.microsoft.com/vstudio/express/vb/"&gt;http://msdn.microsoft.com/vstudio/express/vb/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
Dr M.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
P.S. If PIPPIN is the programming language then i'm sorry i've not&lt;br /&gt;
heard of it.&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/languages/342162/342391/re-pippin/#342391</guid>
      <pubDate>Thu, 03 Aug 2006 12:26:24 -0700</pubDate>
      <category>New programming languages</category>
    </item>
  </channel>
</rss>