diff --git a/Booleans/.idea/.gitignore b/Booleans/.idea/.gitignore deleted file mode 100644 index 5c98b42..0000000 --- a/Booleans/.idea/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -# Default ignored files -/workspace.xml \ No newline at end of file diff --git a/Booleans/.idea/.name b/Booleans/.idea/.name deleted file mode 100755 index 35d79ff..0000000 --- a/Booleans/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -Booleans \ No newline at end of file diff --git a/Booleans/.idea/compiler.xml b/Booleans/.idea/compiler.xml deleted file mode 100755 index 96cc43e..0000000 --- a/Booleans/.idea/compiler.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Booleans/.idea/copyright/profiles_settings.xml b/Booleans/.idea/copyright/profiles_settings.xml deleted file mode 100755 index e7bedf3..0000000 --- a/Booleans/.idea/copyright/profiles_settings.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/Booleans/.idea/encodings.xml b/Booleans/.idea/encodings.xml deleted file mode 100644 index 15a15b2..0000000 --- a/Booleans/.idea/encodings.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/Booleans/.idea/misc.xml b/Booleans/.idea/misc.xml deleted file mode 100755 index 32a1e06..0000000 --- a/Booleans/.idea/misc.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - 1.8 - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Booleans/.idea/modules.xml b/Booleans/.idea/modules.xml deleted file mode 100755 index 792562a..0000000 --- a/Booleans/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/Booleans/.idea/vcs.xml b/Booleans/.idea/vcs.xml deleted file mode 100755 index 6c0b863..0000000 --- a/Booleans/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Booleans/Booleans.iml b/Booleans/Booleans.iml deleted file mode 100755 index c90834f..0000000 --- a/Booleans/Booleans.iml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/Booleans/src/Loader.java b/Booleans/src/Loader.java deleted file mode 100755 index 620c072..0000000 --- a/Booleans/src/Loader.java +++ /dev/null @@ -1,21 +0,0 @@ - -public class Loader { - - public static void main(String[] args) { - int milkAmount = 200; // ml - int powderAmount = 5; // g - int eggsCount = 3; // items - int sugarAmount = 5; // g - int oilAmount = 30; // ml - int appleCount = 8; // items - - //powder - 400 g, sugar - 10 g, milk - 1 l, oil - 30 ml - System.out.println("Pancakes"); - - //milk - 300 ml, powder - 5 g, eggs - 5 - System.out.println("Omelette"); - - //apples - 3, milk - 100 ml, powder - 300 g, eggs - 4 - System.out.println("Apple pie"); - } -} \ No newline at end of file diff --git a/IncomeCalculator/.idea/encodings.xml b/IncomeCalculator/.idea/encodings.xml deleted file mode 100644 index 15a15b2..0000000 --- a/IncomeCalculator/.idea/encodings.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/IncomeCalculator/.idea/misc.xml b/IncomeCalculator/.idea/misc.xml deleted file mode 100644 index e0844bc..0000000 --- a/IncomeCalculator/.idea/misc.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/IncomeCalculator/.idea/modules.xml b/IncomeCalculator/.idea/modules.xml deleted file mode 100644 index a1c2ae5..0000000 --- a/IncomeCalculator/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/IncomeCalculator/.idea/workspace.xml b/IncomeCalculator/.idea/workspace.xml deleted file mode 100644 index 35d38d5..0000000 --- a/IncomeCalculator/.idea/workspace.xml +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1549974917810 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/WhileCycle/WhileCycle.iml b/WhileCycle/WhileCycle.iml deleted file mode 100644 index c90834f..0000000 --- a/WhileCycle/WhileCycle.iml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/WhileCycle/src/Main.java b/WhileCycle/src/Main.java deleted file mode 100644 index de70536..0000000 --- a/WhileCycle/src/Main.java +++ /dev/null @@ -1,24 +0,0 @@ -import java.util.Scanner; - -public class Main -{ - public static void main(String[] args) - { - int secretPinCode = 7567; - int pinCode = -1; - - Scanner scanner = new Scanner(System.in); - while(pinCode != secretPinCode) - { - if(pinCode == -1) { - System.out.println("Введите пароль:"); - } - else { - System.out.println("Пароль введён неверно. Введите верный пароль:"); - } - pinCode = scanner.nextInt(); - } - - System.out.println("Пароль введён верно!!!"); - } -} diff --git a/demo-notes/module1 b/demo-notes/module1 new file mode 100644 index 0000000..e69de29 diff --git a/demo-notes/module2 b/demo-notes/module2 new file mode 100644 index 0000000..e69de29 diff --git a/demo-notes/module3 b/demo-notes/module3 new file mode 100644 index 0000000..e69de29 diff --git a/demo-notes/module4/README.md b/demo-notes/module4/README.md new file mode 100644 index 0000000..6845c01 --- /dev/null +++ b/demo-notes/module4/README.md @@ -0,0 +1,5 @@ + +Please use [Git Pro Book](https://git-scm.com/book/ru/v2/) for this module +or use official [doc](https://git-scm.com/doc) + +Git is cool!