This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.javarush.test.level01.lesson05.task01; | |
public class Solution | |
{ | |
public static void main(String[] args) | |
{ | |
//Вывести на экран надпись "Поцелуй мой блестящий металлический зад!" | |
//написать тут ваш код | |
System.out.println("Поцелуй мой блестящий металлический зад!"); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Привет! | |
Я знал, что ты это сделаешь. | |
Если ты читаешь это сообщение, значит, ты думаешь головой, а не тупо следуешь инструкциям. | |
Из тебя выйдет отличный программист! | |
В этом проекте ты можешь создавать свои классы и выполнять их. | |
Чтобы они не мешали друг другу, создавай их в отдельных пакетах. | |
Чтобы запустить класс на исполнение, достаточно нажать Ctrl+Shift+F10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.javarush.test.level08.lesson08.task04; | |
import java.util.Date; | |
import java.util.HashMap; | |
import java.util.Map; | |
import java.util.Iterator; | |
public class Solution | |
{ | |
public static HashMap<String, Date> createMap() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.javarush.test.level08.lesson08.task03; | |
import java.util.HashMap; | |
import java.util.HashSet; | |
import java.util.Map; | |
public class Solution | |
{ | |
public static void main(String[] args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.javarush.test.level08.lesson08.task01; | |
import java.util.HashSet; | |
import java.util.Set; | |
public class Solution | |
{ | |
public static HashSet<String> createSet() | |
{ | |
//Напишите тут ваш код |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.javarush.test.level08.lesson06.task05; | |
import com.sun.org.apache.bcel.internal.generic.RET; | |
import java.util.ArrayList; | |
import java.util.LinkedList; | |
import java.util.List; | |
public class Solution | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.javarush.test.level08.lesson06.task05; | |
import com.sun.org.apache.bcel.internal.generic.RET; | |
import java.util.ArrayList; | |
import java.util.LinkedList; | |
import java.util.List; | |
public class Solution | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.javarush.test.level08.lesson06.task05; | |
import java.util.ArrayList; | |
import java.util.LinkedList; | |
import java.util.List; | |
public class Solution | |
{ | |
public static List getListForGet() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.javarush.test.level08.lesson06.task04; | |
import java.util.ArrayList; | |
import java.util.Date; | |
import java.util.List; | |
public class Solution | |
{ | |
public static void main(String[] args) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.javarush.test.level08.lesson06.task03; | |
import java.util.ArrayList; | |
import java.util.Date; | |
import java.util.LinkedList; | |
import java.util.List; | |
public class Solution | |
{ | |
public static void main(String[] args) |
NewerOlder