Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- String ime = "Jovan", prezime = "Jovanov";
- String tel[] = {"070/111-222", "071/333-444"};
- int vozrast = 19, indeks = 101010;
- String grad = "Skopje";
- String str =
- "{" + navodnici("ime") + ":" + navodnici(ime) + ", "
- + navodnici("prezime") + ":" + navodnici(prezime) + ", "
- + navodnici("vozrast") + ":" + Integer.toString(vozrast) + ", "
- + navodnici("grad") + ":" + navodnici(grad) + ", "
- + navodnici("indeks") + ":" + Integer.toString(indeks) + ", "
- + navodnici("telefonskiKontakti") + ":["
- ;
- for (int i = 0; i < tel.length; i++)
- {
- str += navodnici(tel[i]);
- if (i < tel.length-1)
- str += ", ";
- }
- str += "], " + navodnici("emailKontakti") + ":[";
- for (int i = 0; i < mail.length; i++)
- {
- str += navodnici(mail[i]);
- if (i < mail.length-1)
- str += ", ";
- }
- str += "]}";
- System.out.println(str);
Advertisement
Add Comment
Please, Sign In to add comment