tulidmiexieit134.blogspot.com
IT134A_DDS: Exercise1- Word Reverser
http://tulidmiexieit134.blogspot.com/2009/03/exercise1-word-reverser.html
Wednesday, March 18, 2009. Programmer: Miexie D. Tulid. 160;*Date started: March 13, 2009. 160;*Date ended: March 18, 2009. 160;*Description: A program that reads a sentence from the user and prints it out w/ each word. Import java.util.*;. Public static void main(String args[]){. 160;Scanner scan=new Scanner(System.in);. 160;System.out.println("Input:");. 160;input=scan.nextLine();. 160;StringTokenizer st=new StringTokenizer(input) ;. 160; while (st.hasMoreTokens() {. 160; r=st.nextToken();. 160; .
ramosjeanneit134.blogspot.com
IT134A_DDS: March 2009
http://ramosjeanneit134.blogspot.com/2009_03_01_archive.html
Monday, March 23, 2009. Date started: march 23, 2009 . Date ended: march 24, 2009 . Purpose: manipulate String.*/. Import java.util.*; . Import java.io.*; . Public class nameEcho { . Public static void main(String[] args) throws IOException . 160;{ . 160; String yourName; . 160; String firstName; . 160; String lastname; . 160; System.out.println("Enter your name:"); . 160; Scanner input = new Scanner(System.in); . 160; yourName = input.nextLine(); . 160; } . 160; {.
ramosjeanneit134.blogspot.com
IT134A_DDS: OBJECTS IN THE DIRECT CLOTHING CASE STUDY
http://ramosjeanneit134.blogspot.com/2009/03/objects-in-direct-clothing-case-study.html
Monday, March 9, 2009. OBJECTS IN THE DIRECT CLOTHING CASE STUDY. 160;int CustomerID=0;. 160;String Name=" ";. 160;String Address=" ";. 160;int PhoneNumber=00000000000;. 160;String EmailAddress=" ";. 160;int Order=0;. 160;public void displayCustomerInformation(). 160;System.out.println("CustomerID: " getCustomerID() ;. 160;System.out.println("Name: " getName() ;. 160;System.out.println("Address: " getAddress() ;. 160;System.out.println("PhoneNumber: " getPhoneNumber() ;. 160;public int getCustomerID().
cumingmarygraceit134.blogspot.com
IT134A_DDS: February 2009
http://cumingmarygraceit134.blogspot.com/2009_02_01_archive.html
Sunday, February 8, 2009. Direct clothing Case Study. Date Started:February 7,2009. Date Ended:February 8,2009 Program name:Direct Clothing CAse Study Solution(Class Shirt) */. Public class Shirt {. Private String shirtID; private double price; private String color; private int quantity; private String description;. Public Shirt(String newshirtID,double newprice,String newcolor, int newquantity,String newdescription){ / constructor. Date Started:February 7,2009. Public class Order{ private String orderID...
cumingmarygraceit134.blogspot.com
IT134A_DDS
http://cumingmarygraceit134.blogspot.com/2009/03/programmer-cuming-mary-grace-program_11.html
Wednesday, March 11, 2009. 160;Programmer: Cuming Mary Grace. 160;Program name: User-Friendly Division. 160;Date Started:MArch 2,2009. 160;Date Finished: MArch 11, 2009. 160;Purpose of the programm: To learn more about Exception Handling in a program. 160;import java.util.InputMismatchException;. 160; import java.util.Scanner;. 160; public class DivisionPractice. 160; / demonstrates throwing an exception using the Arithmetic Exception when a divide-by-zero occurs. 160; throws ArithmeticException. 160; ...
cumingmarygraceit134.blogspot.com
IT134A_DDS
http://cumingmarygraceit134.blogspot.com/2009/02/programmercuming-mary-grace-date.html
Wednesday, February 4, 2009. Date started: February 4, 2009. Date ended: February 4, 2009. Programme name: Solving a Cube. Programme purpose: To create classes using Visibility access Modifiers. Private double width;. Private double length;. Private double height;. Private double volume;. Private double area;. Public Cube(double w, double h, double l). Private double volume() / method for the volume. Private double area() / method for the area. System.out.println("The area of the Cube:" area() ;. View my...
cumingmarygraceit134.blogspot.com
IT134A_DDS
http://cumingmarygraceit134.blogspot.com/2009/03/exercise-4-programmer-mary-grace-cuming.html
Friday, March 20, 2009. Programmer: Mary Grace Cuming. Program Name: Name Echo. Date Started: March 16, 2009. Date Ended: March 19, 2009. Programm Purpose: A program that will ask a for the user name. And then print it back in a caps lock form. Import java.util.Scanner;. Public static void main(String args[]). Scanner scan=new Scanner(System.in);. System.out.println("Enter your name:"); / ask for the user’s name name=scan.nextLine(); / get the name of the user using the scanner. Date Ended: March 18, 2009.
ramosjeanneit134.blogspot.com
IT134A_DDS: February 2009
http://ramosjeanneit134.blogspot.com/2009_02_01_archive.html
Tuesday, February 3, 2009. Programmer: Jeanne B. Ramos. Date started: February 4, 2009. Date ended: February 6, 2009. Programmed name: Cube Exe. Purpose: To create classes using Visibility Modifiers. 160;public class Cubez{ private double volume;. 160; private double area;. 160; private double width;. 160; private double height;. 160; private double length;. 160; private double setDimension;. 160; width=0;. 160; height=0;. 160; length=0;. 160; volume=0;. 160; area=0;. 160; }.