/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package javaexamples;
import java.util.*;
/**
*
* @author labia
*/
public class newclass {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
ArrayList<String> listaS = new ArrayList<String>();
listaS.add("Peugeot 607");
listaS.add("Lancia Thesis");
listaS.add("Audi A6");
listaS.add("BMW Seria 5");
listaS.add("Volvo S80");
listaS.add("Mercedes Klasa E");
ArrayList<Integer> Rok = new ArrayList<Integer>();
Rok.add(1955);
Rok.add(1999);
Rok.add(2010);
Rok.add(2000);
Rok.add(1991);
Rok.add(1987);
Collections.sort(listaS);
System.out.print(Rok);
Iterator <Integer> i = Rok.iterator();
double suma = 0;
do
{
suma += (i.next());
}
while(i.hasNext());
double srednia = suma / Rok.size();
System.out.println("n Sredni rocznik: " +
String.valueOf(srednia));
HashMap<String,Integer> hash = new HashMap<String,Integer>();
for (int ia = 0; ia < 6; ia++)
{
hash.put(listaS.get(ia), Rok.get(ia));
}
String marka = "BMW Seria 5";
if (hash.containsKey(marka))
{
System.out.println("Samochod " + marka + " zostal
wyprodukowany w " + String.valueOf(hash.get(marka)));
}
TreeMap<String,Integer> tree = new TreeMap<String,Integer>();
for (int ia = 0; ia < 6; ia++)
{
tree.put(listaS.get(ia),Rok.get(ia));
}
LinkedHashSet<Integer> wyl = new LinkedHashSet<Integer>();
HashMap<Integer,Integer> liczba = new HashMap<Integer,Integer>();
for (int ia = 0; ia<20;ia++)
{
Random los = new Random();
int w = los.nextInt(25);
wyl.add(w);
int ilosc = 0;
if (liczba.containsKey(w))
ilosc = liczba.get(w);
liczba.put(w, ilosc + 1);
}
System.out.print("Wylosowano: n");
System.out.print(wyl);
System.out.print("nWylosowano: n");
for (int ia = 0; ia< liczba.size();ia++)
{
}
}
}