3 saw

/*

* 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++)

{

}

}

}


Wyszukiwarka

Podobne podstrony:
Nowenna do Ĺšw Ojca Pio
Mitre Saw Workstation
saw
Checking Table Saw Blade Alignment
Katalog Filtry SAW
SAW prezentacja (2)
improvment of chain saw and changes of symptoms in the operators
Bow Saw
MEL prof SAW mems wykład
saw -piła, Opisy zdobycia archivementów i trofeów
SAW VP
Cutting Wide Boards On A Table Saw
SAW
I Saw Three Ships
Nowenna do Św Michała Archanioła
11 Saw cuttingid 12249
Nowenna do Ĺšw Antoniego

więcej podobnych podstron