-
Recent Posts
Recent Comments
- tracy reyes on "No good deed goes unpunished" or how I got hit by a car…
- Stuart on "No good deed goes unpunished" or how I got hit by a car…
- TJ Avery on "No good deed goes unpunished" or how I got hit by a car…
- Anthony Sava on "No good deed goes unpunished" or how I got hit by a car…
- Stephanie S. on Card games in the classroom…
Archives
- August 2010
- July 2010
- April 2010
- March 2010
- February 2010
- December 2009
- September 2009
- August 2009
- July 2009
- June 2009
- January 2009
- November 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- July 2005
- June 2005
- May 2005
- March 2005
- December 2004
- November 2004
- September 2004
- June 2004
- May 2004
- January 2004
- December 2003
Categories
Meta
Category Archives: Code Examples
ITSE 2317 Source Code
I’ve created an area for you to download the in class examples. http://crmacd.biz/classes_code/itse2317/¬†
Posted in Code Examples, ITSE2317
Comments Off
Test 1: Review Code
public boolean isValidPhone(String sAreaCode, String sPrefix, String sSuffix) { return this.isValidPhonePart(sAreaCode,3) && this.isValidPhonePart(sSuffix,4); } public boolean isValidPhonePart(String sValue, int iLength) { for(int iCounter = 0; iCounter < sValue.length(); iCounter++) { switch(sValue.charAt(iCounter)) { case ’0′: case ’1′: case ’2′: break; default: … Continue reading
Posted in Code Examples, ITSE2317
Comments Off
Chapter 4.3 – Code Examples
Today we reviewed over creating optimized code by utilizing code reuse where ever possible. There were questions over the programming assignment. Page 311, Problem #5.
Posted in Code Examples, Homework, ITSE2317
Comments Off