Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Programming Guides, Tutorials, Web Resources, and E-books Compilation

ts pa update naman po ng links ng books ng vb.net thanks po!
 
sir pa help nman po, pano po gumawa ng program n larong sungka? salamat po..:help:
 
nìce1 ts..galing mrmi n q0ng nlman.bowt s thread m0ng 2ng,slmt ng mrmi:yipee:
 
woooooooooooo..ngayon ko lang nalaman ito ah, may thread apla nito :D

thanks TS!!
 
thanks for this thread .. this will a good for me..
 
Sir, maya alam po ba kayong games na naproduce sa visual studio? reply po. salamat :weep:
 
Help naman po pwede nyo po ba ako matulungan kung panu to paganahin kapag gagamitan na ng JOptionPane plssss bale ok na po itong program na ito aayusin nalang po


import java.util.*;

public class LinkedListExample{
public static void main(String[] args) {

LinkedList <Integer>list = new LinkedList<Integer>();
int num1 = 11, num2 = 22, num3 = 33, num4 = 44;
int size;
Iterator iterator;
//Adding data in the list
list.add(num1);
list.add(num2);
list.add(num3);
list.add(num4);
size = list.size();
System.out.print( "Linked list data: ");
//Create a iterator
iterator = list.iterator();
while (iterator.hasNext()){
System.out.print(iterator.next()+" ");
}
System.out.println();
//Check list empty or not
if (list.isEmpty()){
System.out.println("Linked list is empty");
}
else{
System.out.println( "Linked list size: " + size);
}
System.out.println("Adding data at 1st location: 55");
//Adding first
list.addFirst(55);
System.out.print("Now the list contain: ");
iterator = list.iterator();
while (iterator.hasNext()){
System.out.print(iterator.next()+" ");
}
System.out.println();
System.out.println("Now the size of list: " + list.size());
System.out.println("Adding data at last location: 66");
//Adding last or append
list.addLast(66);
System.out.print("Now the list contain: ");
iterator = list.iterator();
while (iterator.hasNext()){
System.out.print(iterator.next()+" ");
}
System.out.println();
System.out.println("Now the size of list: " + list.size());
System.out.println("Adding data at 3rd location: 99");
//Adding data at 3rd position
list.add(2,99);
System.out.print("Now the list contain: ");
iterator = list.iterator();
while (iterator.hasNext()){
System.out.print(iterator.next()+" ");
}
System.out.println();
System.out.println("Now the size of list: " + list.size());
//Retrieve first data
System.out.println("First data: " + list.getFirst());
//Retrieve lst data
System.out.println("Last data: " + list.getLast());
//Retrieve specific data
System.out.println("Data at 4th position: " + list.get(3));
//Remove first
int first = list.removeFirst();
System.out.println("Data removed from 1st location: " + first);
System.out.print("Now the list contain: ");
iterator = list.iterator();
//After removing data
while (iterator.hasNext()){
System.out.print(iterator.next()+" ");
}
System.out.println();
System.out.println("Now the size of list: " + list.size());
//Remove last
int last = list.removeLast();
System.out.println("Data removed from last location: " + last);
System.out.print("Now the list contain: ");
iterator = list.iterator();
//After removing data
while (iterator.hasNext()){
System.out.print(iterator.next()+" ");
}
System.out.println();
System.out.println("Now the size of list: " + list.size());
//Remove 2nd data
int second = list.remove(1);
System.out.println("Data removed from 2nd location: " + second);
System.out.print("Now the list contain: ");
iterator = list.iterator();
//After removing data
while (iterator.hasNext()){
System.out.print(iterator.next()+" ");
}
System.out.println();
System.out.println("Now the size of list: " + list.size());
//Remove all
list.clear();
if (list.isEmpty()){
System.out.println("Linked list is empty");
}
else{
System.out.println( "Linked list size: " + size);
}
}

}



salamat po sa makaka tulong sakit napo ng ulo ko
 
salamat dito bosing. nid na ako naagkaka 73 sa prog. ko, haha
xD
 
Budi, pa request naman ako ng mga assembly language tutorial like TASM. La akong mahanap na Ebook sa net eh, hehehe.
 
sir mark baka po meron syang RPG or COBOL na mga links for beginner at application na din po...medyo ayus po kasi ngayon ang RPG gawa nang mga BPO at mga Bank eh...tnx po sa thread nah..:salute:
 
san po ba mas nagpopokus ngayon sa college sa programming ?..

para makapag Advance lesson po ako .. XD
 
Back
Top Bottom