From 952a3f123c274d681b84e0b9b7049d61fb2e1aee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B3=84=EC=B0=8C=EB=A3=A8?= <38304918+JISUSAMA@users.noreply.github.com> Date: Tue, 11 Jun 2024 11:46:54 +0900 Subject: [PATCH 1/3] init --- .gitignore | 29 +++++++++++++++++++++++++++++ .idea/.gitignore | 3 +++ .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ 20240611_java.iml | 11 +++++++++++ src/Main.java | 15 +++++++++++++++ 6 files changed, 72 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.gitignore create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 20240611_java.iml create mode 100644 src/Main.java diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f68d109 --- /dev/null +++ b/.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/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..07115cd --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..803d7d8 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/20240611_java.iml b/20240611_java.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/20240611_java.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/Main.java b/src/Main.java new file mode 100644 index 0000000..1b703e0 --- /dev/null +++ b/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!"); +//test + 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 From f982811cecf94b1691d93e0d3e10cd7ff5ccd5f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B3=84=EC=B0=8C=EB=A3=A8?= <38304918+JISUSAMA@users.noreply.github.com> Date: Tue, 11 Jun 2024 11:48:56 +0900 Subject: [PATCH 2/3] init --- src/Main.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Main.java b/src/Main.java index 1b703e0..edb4cc0 100644 --- a/src/Main.java +++ b/src/Main.java @@ -5,7 +5,7 @@ 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!"); -//test +//testffff 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 . From 487c9957efe5125694194ef47b62b6edfb4f8fa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B3=84=EC=B0=8C=EB=A3=A8?= <38304918+JISUSAMA@users.noreply.github.com> Date: Tue, 11 Jun 2024 12:13:12 +0900 Subject: [PATCH 3/3] init --- .idea/vcs.xml | 6 ++++++ src/Main.java | 1 - 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .idea/vcs.xml diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/Main.java b/src/Main.java index edb4cc0..64bcbc2 100644 --- a/src/Main.java +++ b/src/Main.java @@ -5,7 +5,6 @@ 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!"); -//testffff 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 .