From a54f498a15c5afe3b586ab9e8b95f7e4ff6f034a Mon Sep 17 00:00:00 2001 From: h8floom Date: Fri, 7 Jun 2024 21:42:35 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ProjectContainerShip/.gitignore | 29 +++++++++++++++++++ ProjectContainerShip/.idea/.gitignore | 3 ++ ProjectContainerShip/.idea/misc.xml | 6 ++++ ProjectContainerShip/.idea/modules.xml | 8 +++++ ProjectContainerShip/.idea/vcs.xml | 6 ++++ ProjectContainerShip/ProjectContainerShip.iml | 11 +++++++ ProjectContainerShip/src/Main.java | 15 ++++++++++ 7 files changed, 78 insertions(+) create mode 100644 ProjectContainerShip/.gitignore create mode 100644 ProjectContainerShip/.idea/.gitignore create mode 100644 ProjectContainerShip/.idea/misc.xml create mode 100644 ProjectContainerShip/.idea/modules.xml create mode 100644 ProjectContainerShip/.idea/vcs.xml create mode 100644 ProjectContainerShip/ProjectContainerShip.iml create mode 100644 ProjectContainerShip/src/Main.java diff --git a/ProjectContainerShip/.gitignore b/ProjectContainerShip/.gitignore new file mode 100644 index 0000000..f68d109 --- /dev/null +++ b/ProjectContainerShip/.gitignore @@ -0,0 +1,29 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/ProjectContainerShip/.idea/.gitignore b/ProjectContainerShip/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/ProjectContainerShip/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/ProjectContainerShip/.idea/misc.xml b/ProjectContainerShip/.idea/misc.xml new file mode 100644 index 0000000..e0844bc --- /dev/null +++ b/ProjectContainerShip/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/ProjectContainerShip/.idea/modules.xml b/ProjectContainerShip/.idea/modules.xml new file mode 100644 index 0000000..74373b3 --- /dev/null +++ b/ProjectContainerShip/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/ProjectContainerShip/.idea/vcs.xml b/ProjectContainerShip/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/ProjectContainerShip/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/ProjectContainerShip/ProjectContainerShip.iml b/ProjectContainerShip/ProjectContainerShip.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/ProjectContainerShip/ProjectContainerShip.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/ProjectContainerShip/src/Main.java b/ProjectContainerShip/src/Main.java new file mode 100644 index 0000000..930198c --- /dev/null +++ b/ProjectContainerShip/src/Main.java @@ -0,0 +1,15 @@ +//TIP To Run code, press or +// click the icon in the gutter. +public class Main { + public static void main(String[] args) { + //TIP Press with your caret at the highlighted text + // to see how IntelliJ IDEA suggests fixing it. + System.out.printf("Hello and welcome!"); + + for (int i = 1; i <= 5; i++) { + //TIP Press to start debugging your code. We have set one breakpoint + // for you, but you can always add more by pressing . + System.out.println("i = " + i); + } + } +} \ No newline at end of file