salaccristineit134a.blogspot.com
IT134A_DDS: Iterators/Arraylist
http://salaccristineit134a.blogspot.com/2009/03/iteratorsarraylist.html
Tuesday, March 3, 2009. Programmer: Cristine A. Salac . 160; Program Name: Iterate through elements Java ArrayList using Iterator . 160; Date Started : March 3,2009 . 160; Date Finished: March 3,2009 . 160; Purpose: To create java code using iterator and arraylist . Import java.util.Iterator;import java.util.ArrayList;. Public class IterateThroughArrayListUsingIteratorExample {. 160; public static void main(String[] args) {. 160; . 160; ArrayList tin = new ArrayList(); . 160; tin.add("math"); .
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 =...
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 " ");.
salaccristineit134a.blogspot.com
IT134A_DDS: Direct Clothing Case Study by: Salac, Cristine
http://salaccristineit134a.blogspot.com/2009/02/direct-clothing-case-study-by-salac.html
Monday, February 9, 2009. Direct Clothing Case Study by: Salac, Cristine. Programmer: Cristine A. Salac. Program Name:Catalog class (Direct Clothing Case Study). Program Purpose:To create a code for the purpose of our midterm exam. Private int shirtID;. Private double price;. Private String color;. Private String description;. Private int quantityinstock;. Public Catalog(int s, double p, String c, String d, int q). System.out.println("Here are the info of our catalog:);. Programmer: Cristine A. Salac.
salaccristineit134a.blogspot.com
IT134A_DDS: IT134 EXERCISES
http://salaccristineit134a.blogspot.com/2009/03/it134-exercises.html
Thursday, March 19, 2009. Programmer: Cristine A. Salac. Program Name: Word Reverser(exer 1). Program Purpose: to create a program in a sentence from the user and prints it out with each word reversed, but with the words punctuation in the original order. Import javax.swing.*;. Import java.util.Scanner;. Import java.io.*;. Public class ReverseSent {. Public static void main(String[] args) throws IOException. String a=JOptionPane.showInputDialog("Enter Name: ");/ ask input from the user. End of main method.
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);.
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...
besasjhovanit134a.blogspot.com
IT134A_DDS: Arraylist and Iterators
http://besasjhovanit134a.blogspot.com/2009/03/programmer-name-of-program-arraylist.html
Tuesday, March 3, 2009. Programmer: Besas, Jhovan. 160; Program name: Arraylist with Iterators. 160; Subject: IT134A Computer Programming 3. 160; Instructor: Mr. Dony Dongiapon. 160; Date Started: March 2,2009. 160; Purpose: To implement a java code that deals with ArrayList and Iterators.* */. Import java.util.ArrayList;. Import java.util.Iterator;. Import java.util.ListIterator;. Public class iterators {. Public static void main(String args[]) {. ArrayList vhan = new ArrayList();. Jhoyset(element " ");.