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().
gregorionorfeit134.blogspot.com
IT134_DDS: Exercise3-CombinationLock
http://gregorionorfeit134.blogspot.com/2009/03/exercise-combinationlock.html
Makiblog na with me. Saturday, March 21, 2009. Programmer: Norfe R Gregorio *Date started: March 13, 2009 *Date ended: March 19, 2009 *Title:CombinationLock *Description:a program tht will result other frame color if the user will click three buttons that the program have*;. Public class CombinationLock extends JFrame {. Public static void main (String [] args) { new CombinationLock().setVisible(true); }. Public CombinationLock () {. Subscribe to: Post Comments (Atom). View my complete profile.
gregorionorfeit134.blogspot.com
IT134_DDS: Exercise2-ColorCycle
http://gregorionorfeit134.blogspot.com/2009/03/exercise2-combinationlock.html
Makiblog na with me. Saturday, March 21, 2009. Programmer: Norfe R. Gregorio* Program name: Color Cycle* Subject: IT134 Computer Programming 3* Instructor: Mr. Dony Dongiapon* Date Started: 03/14/09 * Date Finished: 03/19/09* Purpose:A program that will change the color of the background in Frame when you click the botton*/. Import java.*;. Public class ColorCycle extends JFrame implements ActionListener {. Public ColorCycle { setSize(200,200); setLocation(100,100); setTitle(getClass().getName() ;. Red =...
dongiaponjenelynit134.blogspot.com
IT134A_DDS: ArrayList and Iterators
http://dongiaponjenelynit134.blogspot.com/2009/03/arraylist-and-iterators.html
Friday, March 20, 2009. Program Name: Array and Iterators. Date: march 20,2009. Import java.util.ArrayList;. Import java.util.Iterator;. Import java.lang.Object;. Import java.util.ListIterator;. Public static void main(String args[]). ArrayList list = new ArrayList( 100 );. Listadd( "miat" );. Listadd( "yhang" );. Listadd( "peu" );. Listadd( "mhine" );. System.out.print("list: ");. Iterator list2 =list.iterator();. Iteratorelement =list2.next();. System.out.print(element " ");. List3set(element " ");.
gregorionorfeit134.blogspot.com
IT134_DDS: arraylist iterator
http://gregorionorfeit134.blogspot.com/2009/03/arraylist-iterator.html
Makiblog na with me. Saturday, March 7, 2009. Import java.util.ArrayList;. Import java.util.Iterator;. Import java.util.ListIterator;. Public class MainClass {. Public static void main(String args[]) {. Al = new ArrayList. System.out.print("Original contents of al: ");. Itr = al.iterator();. While (itr.hasNext() {. String element = itr.next();. System.out.print(element " ");. System.out.println();. Litr = al.listIterator();. While (litr.hasNext() {. String element = litr.next();. Litrset(element " ");.
arregladojunnalizait134.blogspot.com
IT134A_DDS: February 2009
http://arregladojunnalizait134.blogspot.com/2009_02_01_archive.html
Program Solution for Direct Clothing by: Arreglado. Program Solution for Direct Clothing. View my complete profile. Sunday, February 8, 2009. Program Solution for Direct Clothing by: Arreglado, Junnaliza. Programme name: Direct Clothing Case Study(customer class). Date started: february 7, 2009. Date ended: february 8, 2009. Programme purpose: to be able to make sulotion for the direct clothing problem*/. Private int customerid;. Private String name;. Private String address;. Private int phonenumber;.
pacaliogamarkit134.blogspot.com
IT134A_DDS: Iterator Arraylist exer.
http://pacaliogamarkit134.blogspot.com/2009/03/iterator-arraylist-exer.html
Saturday, March 14, 2009. ProgrammerName: Pacalioga, Mark Jay. Purpose: to iterate through the elements of java ArrayList object using Iterator. Date: March 02,2009. Subject: Computer Programming 3. Import java.util.ArrayList;. Public class MainClass {. Public static void main(String args[]) {. Al = new ArrayList. System.out.println("Initial size of al: " al.size() ;. Aladd(1, "A2");. System.out.println("Size of al after additions: " al.size() ;. System.out.println("Contents of al: " al);.
agapaynerissait134.blogspot.com
IT134A_DDS: WORD REVERSER
http://agapaynerissait134.blogspot.com/2009/03/word-reverser.html
Friday, March 20, 2009. Instructor: Mr. Dony Dongiapon. Description:To reverse the phrase being enter by the user without changing orginal position of the words. Import java.util.*;. Import javax.swing.*;. Public class Reverser {. Public static void main(String[] args){. String name=(JOptionPane.showInputDialog("Enter phrase:") ;/. StringTokenizer tokens = new StringTokenizer(name);/ use StringTokenizer to separate each word. String element = tokens.nextToken();. Subscribe to: Post Comments (Atom).