diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index a1c2a23..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,23 +0,0 @@
-# Compiled class file
-*.class
-
-# Log file
-*.log
-
-# BlueJ files
-*.ctxt
-
-# Mobile Tools for Java (J2ME)
-.mtj.tmp/
-
-# Package Files #
-*.jar
-*.war
-*.nar
-*.ear
-*.zip
-*.tar.gz
-*.rar
-
-# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
-hs_err_pid*
diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..5c98b42
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,2 @@
+# Default ignored files
+/workspace.xml
\ No newline at end of file
diff --git a/.idea/description.html b/.idea/description.html
new file mode 100644
index 0000000..db5f129
--- /dev/null
+++ b/.idea/description.html
@@ -0,0 +1 @@
+Simple Java application that includes a class with main() method
\ No newline at end of file
diff --git a/.idea/encodings.xml b/.idea/encodings.xml
new file mode 100644
index 0000000..97626ba
--- /dev/null
+++ b/.idea/encodings.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..2fc6c34
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..9faacd9
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/project-template.xml b/.idea/project-template.xml
new file mode 100644
index 0000000..1f08b88
--- /dev/null
+++ b/.idea/project-template.xml
@@ -0,0 +1,3 @@
+
+ IJ_BASE_PACKAGE
+
\ No newline at end of file
diff --git a/README.md b/README.md
deleted file mode 100644
index ee0f738..0000000
--- a/README.md
+++ /dev/null
@@ -1 +0,0 @@
-# Java_Core
\ No newline at end of file
diff --git a/dataArray.iml b/dataArray.iml
new file mode 100644
index 0000000..d5c0743
--- /dev/null
+++ b/dataArray.iml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/out/production/dataArray/com/company/Main.class b/out/production/dataArray/com/company/Main.class
new file mode 100644
index 0000000..7e03a2c
Binary files /dev/null and b/out/production/dataArray/com/company/Main.class differ
diff --git a/src/com/company/Main.java b/src/com/company/Main.java
new file mode 100644
index 0000000..7ed4467
--- /dev/null
+++ b/src/com/company/Main.java
@@ -0,0 +1,25 @@
+package com.company;
+
+public class Main {
+
+ public static void main(String[] args) {
+
+ int[] list = { 2, 5,8,25,17,52,11,78,32,47};
+
+ int min = list[0];
+ int max = list[0];
+
+ for (int i = 0; i < list.length ; i++) {
+ if (list[i] < min)
+ min = list[i];
+ }
+
+ for (int i = 0; i < list.length ; i++) {
+ if(list[i] > max)
+ max = list[i];
+
+ }
+ System.out.println("Мінімальне число масиву: " + min);
+ System.out.println("Максимальне числа масиву: " + max);
+ }
+}