Category Archives: ITSE2317

Chapter 6 Homework

Page 497, Problem #1 Page 497, Problem #3 Page 498, Problem #7

Posted in Assignments, Homework, ITSE2317 | 2 Comments

Semester Project

Write a game to play poker with 2-4 players. You can check out some basic rules for Texas Hold’ em.

Posted in ITSE2317, Project | Comments Off

Chapter 5: Assignments

Page 413, Problem #6 Page 413, Problem #7

Posted in Assignments, Homework, ITSE2317 | Comments Off

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

Chapter 5.1: Assignment

Page 412, Problem #1

Posted in Assignments, Homework, 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.4: Assignment

Page 312, Problem #8

Posted in Assignments, Homework, 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

Chapter 4.2: Assignment

Page 311 Problem #5

Posted in Assignments, ITSE2317 | Comments Off

Eclipse

Download from http://www.eclipse.org/. Install the application. Run the application. Select the workspace you would like to work in. File -> New… -> Project… Java Project Next Enter a project name. Next Finish Right Click on the Project folder New… -> … Continue reading

Posted in General Information, ITSE2317 | Comments Off