<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://www.spyroforum.com/extern.php?action=feed&amp;tid=7125&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Spyro the Dragon Forums / Oh, yeah, I own so hard!]]></title>
		<link>https://www.spyroforum.com/viewtopic.php?id=7125</link>
		<description><![CDATA[The most recent posts in Oh, yeah, I own so hard!.]]></description>
		<lastBuildDate>Wed, 01 Oct 2008 14:42:55 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Oh, yeah, I own so hard!]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=212477#p212477</link>
			<description><![CDATA[<p>Thanks to some instruction, I&#039;ve made a calculator!</p><div class="codebox"><pre class="vscroll"><code>#include &lt;iostream&gt;
using namespace std;

int main()
{
   float number1;
   float number2;
   float number3;
   float numbertot;
   int again;
   
   again = 1;
   
   cout &lt;&lt; &quot;This is a calculator that I made.&quot;;
   cout &lt;&lt; &quot;This program will multiply three numbers. Please put in actual numbers or you will be spammed to hell.&quot;;

   while (again == 1)
   {

      cout &lt;&lt; &quot;\nPlease type in first number you wish to multiply.&quot;;
      cin &gt;&gt; number1;
   
      cout &lt;&lt; &quot;\nPlease type in second number you wish to multiply.. &quot;;
      cin &gt;&gt; number2;
   
      cout &lt;&lt; &quot;\nPlease type in the third number you wish to multiply. &quot;;
      cin &gt;&gt; number3;
   
      numbertot=(number1)*(number2)*(number3);
      cout &lt;&lt; &quot;\nThe product of the three numbers is &quot; &lt;&lt; (numbertot) &lt;&lt; &quot;.&quot;;
      cout &lt;&lt; &quot;\nWould you like to perform another calculation?  Type 1 for yes or 2 for no. &quot;;
      cin &gt;&gt; again;
   }
   
   cout &lt;&lt; &quot;See ya.&quot;;
   return 0;
   
}</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (A Guy)]]></author>
			<pubDate>Wed, 01 Oct 2008 14:42:55 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=212477#p212477</guid>
		</item>
		<item>
			<title><![CDATA[Re: Oh, yeah, I own so hard!]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=212360#p212360</link>
			<description><![CDATA[<p>Heres some C++ code to think about...</p><div class="codebox"><pre><code>long gcd(long a, long b) {
  return b == 0 ? a : gcd(b, a%b);
}</code></pre></div><p>Finds the Greatest common factor of 2 numbers.</p>]]></description>
			<author><![CDATA[dummy@example.com (Spyrorocks)]]></author>
			<pubDate>Wed, 01 Oct 2008 02:24:16 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=212360#p212360</guid>
		</item>
		<item>
			<title><![CDATA[Re: Oh, yeah, I own so hard!]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=212249#p212249</link>
			<description><![CDATA[<div class="quotebox"><cite>Stormy wrote:</cite><blockquote><div><p>[sub]Cool, nice job. I&#039;m surprised I still remember that from Computer Science last year. I guess it was more important to me than it was to you, DDR. (What am I supposed to call you on the internet? ._.)</p><p>Anyways, what does that line &quot;using namespace std&quot; do? SR kept putting that into my programs, but we never used it in class. [/sub]</p></div></blockquote></div><p>Yeah, I kind of just wanted to try the class to see if I was interested. I wasn&#039;t, but oh well. </p><p>You can call me Evan, I don&#039;t care.</p>]]></description>
			<author><![CDATA[dummy@example.com (Paranoia)]]></author>
			<pubDate>Wed, 01 Oct 2008 00:13:37 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=212249#p212249</guid>
		</item>
		<item>
			<title><![CDATA[Re: Oh, yeah, I own so hard!]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=212068#p212068</link>
			<description><![CDATA[<p>thats a basic code, like the ones found on Microsoft Visual Basic. I did some work on that programme last year.</p>]]></description>
			<author><![CDATA[dummy@example.com (Reivan)]]></author>
			<pubDate>Tue, 30 Sep 2008 19:41:16 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=212068#p212068</guid>
		</item>
		<item>
			<title><![CDATA[Re: Oh, yeah, I own so hard!]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=212003#p212003</link>
			<description><![CDATA[<p>Yeah, I have no clue about that. I know how to work computers, but I have no idea of the mechanics behind them....</p>]]></description>
			<author><![CDATA[dummy@example.com (Phoenix_Flyer)]]></author>
			<pubDate>Tue, 30 Sep 2008 14:35:08 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=212003#p212003</guid>
		</item>
		<item>
			<title><![CDATA[Re: Oh, yeah, I own so hard!]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=211980#p211980</link>
			<description><![CDATA[<p>I dunno, and it works without it, but I just add it anyways.</p>]]></description>
			<author><![CDATA[dummy@example.com (A Guy)]]></author>
			<pubDate>Tue, 30 Sep 2008 12:54:12 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=211980#p211980</guid>
		</item>
		<item>
			<title><![CDATA[Re: Oh, yeah, I own so hard!]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=211977#p211977</link>
			<description><![CDATA[<p>[sub]Cool, nice job. I&#039;m surprised I still remember that from Computer Science last year. I guess it was more important to me than it was to you, DDR. (What am I supposed to call you on the internet? ._.)</p><p>Anyways, what does that line &quot;using namespace std&quot; do? SR kept putting that into my programs, but we never used it in class. [/sub]</p>]]></description>
			<author><![CDATA[dummy@example.com (Stormy)]]></author>
			<pubDate>Tue, 30 Sep 2008 12:36:59 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=211977#p211977</guid>
		</item>
		<item>
			<title><![CDATA[Re: Oh, yeah, I own so hard!]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=211974#p211974</link>
			<description><![CDATA[<p>Nice. I would have known what that meant last year, because I took Computer Science, but I forgot everything.</p>]]></description>
			<author><![CDATA[dummy@example.com (Paranoia)]]></author>
			<pubDate>Tue, 30 Sep 2008 12:17:20 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=211974#p211974</guid>
		</item>
		<item>
			<title><![CDATA[Oh, yeah, I own so hard!]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=211973#p211973</link>
			<description><![CDATA[<p>I&#039;ve made something very basic in C++.</p><div class="codebox"><pre><code>// This is the first program I&#039;m building without a base in C++.
#include &lt;iostream&gt;
#include &lt;string&gt;
using namespace std;

int main ()
{
  string name;
  cout &lt;&lt; &quot;Hello, there. What is your name? &quot;;
  getline (cin, name);
  cout &lt;&lt; &quot;Hello &quot; &lt;&lt; name &lt;&lt; &quot;.\n&quot;;
  string game;
  cout &lt;&lt; &quot;What is your favorite game?&quot;;
  getline (cin, game);
  cout &lt;&lt; game &lt;&lt; &quot; is my favorite game as well!&quot;;
  string song;
  cout &lt;&lt; &quot;What is your favorite song? &quot;;
  getline (cin, song);
  cout &lt;&lt; song &lt;&lt; &quot; is a good song. Please enter something to exit this program. &quot;;
  string leave;
  getline (cin, leave);
  return 0;
}</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (A Guy)]]></author>
			<pubDate>Tue, 30 Sep 2008 12:15:58 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=211973#p211973</guid>
		</item>
	</channel>
</rss>
