<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>Programming</title>
		<link>http://mresbioinformatics.forummotion.com/programming-f1/-t1.htm</link>
		<description></description>
		<lastBuildDate>Sun, 09 Nov 2008 00:12:11 GMT</lastBuildDate>
		<ttl>10</ttl>
		<image>
			<title>Programming</title>
			<url>http://illiweb.com/fa/subsilver/logo_en.gif</url>
			<link>http://mresbioinformatics.forummotion.com/programming-f1/-t1.htm</link>
		</image>
		<item>
			<title>Overflow?!?!?!?!?</title>
			<link>http://mresbioinformatics.forummotion.com/programming-f1/overflow-t42.htm</link>
			<dc:creator>markj</dc:creator>
			<description><![CDATA[Hi guys,
<br />

<br />
Do me need to control overflow in our assessed exercise?
<br />

<br />
is there anyone who met such problem?]]></description>
			<category>Programming</category>
			<pubDate>Sun, 09 Nov 2008 00:12:11 GMT</pubDate>
			<comments>http://mresbioinformatics.forummotion.com/programming-f1/overflow-t42.htm#153</comments>
			<guid>http://mresbioinformatics.forummotion.com/programming-f1/overflow-t42.htm</guid>
		</item>
		<item>
			<title>code for lab8</title>
			<link>http://mresbioinformatics.forummotion.com/programming-f1/code-for-lab8-t21.htm</link>
			<dc:creator>Nico</dc:creator>
			<description>Here are my three different classes, including the extension.





Code:import FormatIO.*;



public class MyDate &#123;



   private int year=0,month=0,day=0;

   

   //first constructor

   public MyDate&#40;int year,int month,int day&#41;

   &#123;

      this.year = year;          //class variable &#40;using this&#41; = parameter variable

      this.month = month;

   ...</description>
			<category>Programming</category>
			<pubDate>Mon, 13 Oct 2008 18:04:46 GMT</pubDate>
			<comments>http://mresbioinformatics.forummotion.com/programming-f1/code-for-lab8-t21.htm#87</comments>
			<guid>http://mresbioinformatics.forummotion.com/programming-f1/code-for-lab8-t21.htm</guid>
		</item>
		<item>
			<title>Code for Lab 7 ..</title>
			<link>http://mresbioinformatics.forummotion.com/programming-f1/code-for-lab-7-t15.htm</link>
			<dc:creator>markj</dc:creator>
			<description>the code for lab 7 and lab 7 extension exercise is a little different, So I will post them in different color (blue for lab7 and biolet for extension)



import java.awt.event.ActionEvent;



import FormatIO.*;



public class Lab7 {

	public static void main(String[] arg){

		Console con = new Console();

		boolean draw = true;

		

		while(draw){

			//is that better to put the question after finishing the task?

			con.println(&quot;Do you want to draw a box?&quot;);

			String  ...</description>
			<category>Programming</category>
			<pubDate>Fri, 03 Oct 2008 14:36:15 GMT</pubDate>
			<comments>http://mresbioinformatics.forummotion.com/programming-f1/code-for-lab-7-t15.htm#48</comments>
			<guid>http://mresbioinformatics.forummotion.com/programming-f1/code-for-lab-7-t15.htm</guid>
		</item>
		<item>
			<title>Code for Lab 6 (discussing)</title>
			<link>http://mresbioinformatics.forummotion.com/programming-f1/code-for-lab-6-discussing-t14.htm</link>
			<dc:creator>markj</dc:creator>
			<description>the code for Lavb 6 seems to be much less than Lab 5





import java.util.*;

//import java.lang.*; //not necessary to use java.lang.* here?

import FormatIO.*;





public class Lab6 {

	public static void main(String[] arg){

		//get a random number

		//compare the input number with the random number

		//make comment if the input number is too high or too law

		//stop guessing if the number is right

		//print out the number of steps;



		int step;

		int game = 0;

		double  ...</description>
			<category>Programming</category>
			<pubDate>Fri, 03 Oct 2008 14:33:22 GMT</pubDate>
			<comments>http://mresbioinformatics.forummotion.com/programming-f1/code-for-lab-6-discussing-t14.htm#47</comments>
			<guid>http://mresbioinformatics.forummotion.com/programming-f1/code-for-lab-6-discussing-t14.htm</guid>
		</item>
		<item>
			<title>Lab 5 code</title>
			<link>http://mresbioinformatics.forummotion.com/programming-f1/lab-5-code-t10.htm</link>
			<dc:creator>markj</dc:creator>
			<description>Hi guys,



It's my solution to Lab5. Hope it's not bad. Waiting for your comments  





import FormatIO.*;



public class Lab5 {

	//Exercise for week2 /extension exercise for Lab4

	//input the name of item

	//if item name equal &quot;battery&quot;, &quot;lightbulb&quot;, or &quot;torch&quot; 

	//print out the price of each item and asked the user to enter the number

	//in other cases, ask the user to input the cost for each item and number of items

	//calculate the cost  ...</description>
			<category>Programming</category>
			<pubDate>Tue, 30 Sep 2008 13:24:09 GMT</pubDate>
			<comments>http://mresbioinformatics.forummotion.com/programming-f1/lab-5-code-t10.htm#36</comments>
			<guid>http://mresbioinformatics.forummotion.com/programming-f1/lab-5-code-t10.htm</guid>
		</item>
		<item>
			<title>Lab4 code ...........</title>
			<link>http://mresbioinformatics.forummotion.com/programming-f1/lab4-code-t5.htm</link>
			<dc:creator>markj</dc:creator>
			<description>I should say it's not a smart way to solve the problem . Hope anyone who is interested chould post their code as well



	Code:public static void main&#40;String&#91;&#93; arg&#41;&#123;

      int itemNum = 0;

      double perCost = 0.0;

      String itemName =&quot;&quot;;

      boolean numValid = false;

      boolean costValid = false;

      

      ...</description>
			<category>Programming</category>
			<pubDate>Fri, 26 Sep 2008 15:07:10 GMT</pubDate>
			<comments>http://mresbioinformatics.forummotion.com/programming-f1/lab4-code-t5.htm#12</comments>
			<guid>http://mresbioinformatics.forummotion.com/programming-f1/lab4-code-t5.htm</guid>
		</item>
	</channel>
</rss>