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.task.task19.task1907; | |
| /* | |
| Считаем слово | |
| */ | |
| import java.io.*; | |
| import java.util.ArrayList; | |
| import java.util.Arrays; | |
| import java.util.Collections; |
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.task.task18.task1823; | |
| import java.io.*; | |
| import java.util.HashMap; | |
| import java.util.Map; | |
| /* | |
| Нити и байты | |
| */ |
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.task.task18.task1827; | |
| /* | |
| Прайсы | |
| */ | |
| import java.io.*; | |
| public class Solution { | |
| public static void main(String[] args) throws Exception { |
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.task.task18.task1827; | |
| /* | |
| Прайсы | |
| */ | |
| import java.io.*; | |
| import java.util.ArrayList; | |
| import java.util.Arrays; | |
| import java.util.Collections; |
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.task.task18.task1808; | |
| /* | |
| Разделение файла | |
| */ | |
| import java.io.BufferedReader; | |
| import java.io.FileInputStream; | |
| import java.io.FileOutputStream; | |
| import java.io.InputStreamReader; |
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.task.task16.task1627; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| public class Solution { | |
| public static void main(String[] args) throws InterruptedException { | |
| OnlineGame onlineGame = new OnlineGame(); | |
| onlineGame.start(); | |
| } |
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.task.task16.task1615; | |
| /* | |
| Аэропорт | |
| */ | |
| public class Solution { | |
| public static volatile Runway RUNWAY = new Runway(); //1 взлетная полоса | |
| public static void main(String[] args) throws InterruptedException { |
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.task.task16.task1613; | |
| /* | |
| Big Ben clock | |
| */ | |
| public class Solution { | |
| public static volatile boolean isStopped = false; | |
| public static void main(String[] args) throws InterruptedException { |
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.task.task16.task1607; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| /* | |
| Horse Racing | |
| */ | |
| 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.task.task13.task1319; | |
| import java.io.*; | |
| import java.util.ArrayList; | |
| /* | |
| Писатель в файл с консоли | |
| */ | |
| public class Solution { |
NewerOlder