public static void main(String[] args) { // ํ๋ก๊ทธ๋จ์ ์์์
// ์คํ๋ ๋ช
๋ น์ด๋ค์ ์์ฑํ๋ ๊ณต๊ฐ
}
์ค๊ดํธ {}
์์๊ณผ ๋์ ์๋ฏธํจ.๊ดํธ ์ฌ์ด์ ์์
ํ ๋ด์ฉ์ ์์ฑ
์ฃผ์ //
์ฝ๋์ ์ค๋ช
์ ์ ๋ ๋ถ๋ถ, ํ๋ก๊ทธ๋จ์ ์ํฅ์ ์ฃผ์ง์์
๊ฐ๋ | ๋น์ | ์ค๋ช |
---|---|---|
ํด๋์ค | ์ค๊ณ๋ | ๊ฐ์ฒด๋ฅผ ๋ง๋ค๊ธฐ ์ํ ์ ์ |
๊ฐ์ฒด | ์ค๊ณ๋ ๊ธฐ๋ฐ์ผ๋ก ๋ง๋ค์ด์ง ์กด์ฌ | ํด๋์ค์์ ๋ง๋ค์ด์ง์กด์ฌ |
ํด๋์ค์ด๋ฆ ์ฒซ ๊ธ์ ๋๋ฌธ์ + ์นด๋ฉ์ผ์ด์ค ์กฐํฉ์ผ๋ก ์์ฑ
ํจํค์ง์ด๋ฆ ์๋ฌธ์๋ก๋ง์ ๋๊ฒ์ ๊ถ์ฅ
[์๋ฃํ(int)][๋ณ์์ด๋ฆ(a)] [์ธ๋ฏธ์ฝ๋ก (a)]
int a;
int b;
์ธ๋ฏธ์ฝ๋ก ; ๋ฌธ์ฅ์ด ๋๋จ์ ์๋ฆฌ๋ ๋ง์นจํ.
(๊ผญ ํ์.. ๋งค์ผ๊น๋จน์..์ง์ง๋ก ๋ฉ๋ชจ ์ค๋ฅ ๋ฉ์ด๋ฆฌ ๋ฐ์ง์ฐ ๋)
a = 1;
- ๋ณ์์ ๊ฐ์ ํ ๋น
- ๋ฆฌํฐ๋ ๋ณ์์์ ์ง์ ๋ฃ๋ ๊ฐ (Literal)
- ํ ๋น ๋ณ์์ ๊ฐ์ ๋ฃ์ด์ฃผ๋ ๊ฒ (Assign)
int c = 3;
c = 4; //(1)
c = 5; //(2)
c = 6; //(3)
int d = 1;
int e = d;
d = 10;
System.out.println("e = " + e); // ์ ๋ต 1
initialization
์๋ฃํ | ํฌ๊ธฐ (Byte) | ์ ์ฅ ๊ฐ๋ฅํ ๊ฐ | ํน์ง (์ฝ๊ฒ ์ค๋ช !) |
---|---|---|---|
boolean | 1 byte | true ๋๋ false | โ๏ธ ์ฐธ/๊ฑฐ์ง์ ์ ์ฅ! ์: boolean isJavaFun = true; |
char | 2 byte | 0 ~ 65535 (์ ๋์ฝ๋) | โ๏ธ ํ ๊ธ์ ์ ์ฅ! ์: char letter = 'A'; |
byte | 1 byte | -128 ~ 127 | โ๏ธ ์์ ์ซ์ ์ ์ฅ (๋ฉ๋ชจ๋ฆฌ ์ ์ฝ) ์: byte age = 25; |
short | 2 byte | -32,768 ~ 32,767 | โ๏ธ byte ๋ณด๋ค ์กฐ๊ธ ๋ ํฐ ์ ์ ์ ์ฅ ์: short year = 2024; |
int | 4 byte | -2,147,483,648 ~ 2,147,483,647 | โ๏ธ ์๋ฐ์์ ๊ฐ์ฅ ๋ง์ด ์ฐ์ด๋ ์ ์ํ! ์: int score = 100; |
long | 8 byte | -9,223,372,036,854,775,808 ~ 9,223,372,036,854,775,807 | โ๏ธ ์์ฃผ ํฐ ์ซ์ ์ ์ฅํ ๋ ์ฌ์ฉ! ์: long distance = 123456789L; (๋์ L ํ์!) |
float | 4 byte | ์์์ ์ฝ 6~7์๋ฆฌ | โ๏ธ ์ค์(์์์ ์๋ ์ซ์) ์ ์ฅ! ์: float price = 9.99f; (๋์ f ํ์!) |
double | 8 byte | ์์์ ์ฝ 15~17์๋ฆฌ | โ๏ธ ๋ ์ ๋ฐํ ์ค์ ์ ์ฅ! ์: double pi = 3.1415926535; |
String | ์ฐธ์กฐํ | ๊ธ์ ์ ์ ํ ์์ | โ๏ธ ์ฌ๋ฌ ๊ธ์ ์ ์ฅ (๋ฌธ์์ด) ์: String name = "Java"; |
1๏ธโฃ ๋ ผ๋ฆฌํ
boolean booleanBox = true;
booleanBox = false;
System.out.println("booleanBox = " + booleanBox);
2๏ธโฃ ๋ฌธ์ํ ''๋ฐ์ดํ๋ก ์ฌ์ฉ
char charBox = 'a';
charBox = 'b';
System.out.println("charBox = " + charBox);
3๏ธโฃ ์ ์ํ(short)
short shortBox = 1;
shortBox = 2;
System.out.println("shortBox = " + shortBox);
4๏ธโฃ ์ ์ํ(int)
int intBox = 1;
intBox = 2;
System.out.println("intBox = " + intBox);
5๏ธโฃ ์ค์ํ(double)
double doubleBox = 0.12345678901234567;
doubleBox = 0.123456789012345678;
System.out.println("doubleBox = " + doubleBox);
6๏ธโฃ ์ค์ํ(float) ์์์ ๋ค์ f ๋ฅผ ๊ผญ ๋ถ์ฌ์ผํจ!
float floatBox = 0.12345678f;
floatBox = 0.1234567890f;
System.out.println("floatBox = " + floatBox);
int smallBox = 10;
double bigBox = smallBox; // double <- int ์๋ํ ๋ณํ
System.out.println(bigBox); // ์ถ๋ ฅ: 10.0
๋ฌธ์ vs ๋ฌธ์์ด
char a = 'a';
String str = "abc";
String stringBox = "๋ฌธ์์ด์ ํํํ ์ ์์ต๋๋ค.";
์ ์ํํ
int intBox = 1;
long longBox = 1;
๋ ผ๋ฆฌ ํํ
boolean booleanBox = false;
System.out.println("Hello");
System.out.println("Java!");
// ์ถ๋ ฅ๊ฒฐ๊ณผ:
Hello
Java!
System.out.print("Hello");
System.out.print(" Java!");
// ์ถ๋ ฅ๊ฒฐ๊ณผ:
Hello Java!
System.out.println("Hello\nWorld!");
// ์ถ๋ ฅ:
Hello
World!
Scanner scanner = new Scanner(System.in);
import java.util.Scanner; // Scanner๋ฅผ ์ฌ์ฉํ๋ ค๋ฉด import ํ์
public class ScannerPractice {
public static void main(String[] args) {
// โ
Scanner ๊ฐ์ฒด ์์ฑ & ๋ณ์์ ๋ด๊ธฐ
Scanner scanner = new Scanner(System.in);
}
}
scanner.nextLine()
import java.util.Scanner;
public class ScannerPractice {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("์ข์ํ๋ ๋ฌธ์ฅ์ ์
๋ ฅํ์ธ์: ");
String sentence = scanner.nextLine(); // โ
๋ฐ์ดํฐ ์ ๋ฌ
System.out.println("์ข์ํ๋ ๋ฌธ์ฅ: " + sentence);
}
}
scanner.nextInt(), scanner.nextDouble(),scanner.nextLong(),
import java.util.Scanner;
public class ScannerPractice {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("์ ์๋ฅผ ์
๋ ฅํ์ธ์: ");
int num1 = scanner.nextInt();
System.out.print("์ค์๋ฅผ ์
๋ ฅํ์ธ์: ");
double num2 = scanner.nextDouble();
System.out.print("ํฐ ์ ์๋ฅผ ์
๋ ฅํ์ธ์: ");
long num3 = scanner.nextLong();
System.out.println("์
๋ ฅํ ์ ์: " + num1);
System.out.println("์
๋ ฅํ ์ค์: " + num2);
System.out.println("์
๋ ฅํ ํฐ ์ ์: " + num3);
}
}
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
---|---|---|---|---|---|---|---|---|---|
() | ++, -- | ~, ! | *, /, % | +, - | <, >, <=, >= | ==, != | && | || | =, +=, -=, *=, /=, %= |
์ฐ์ฐ์ | ์ค๋ช | ์์ | ๊ฒฐ๊ณผ ์์ |
---|---|---|---|
+ | ๋ง์ | 3 + 2 | 5 |
- | ๋บ์ | 5 - 2 | 3 |
* | ๊ณฑ์ | 3 * 2 | 6 |
/ | ๋๋์ | 6 / 2 | 3 |
% | ๋๋จธ์ง ์ฐ์ฐ | 5 % 2 | 1 |
int a = 10;
int b = 3;
int sum = a + b;
System.out.println("sum = " + sum);
int sub = a - b;
System.out.println("sub = " + sub);
int mul = a * b;
System.out.println("mul = " + mul);
int div = a / b;
System.out.println("div = " + div);
double div2 = a / 3.0; // ์์์ ์ ์งํ๋ ค๋ฉด ์์์ ๊ณผ ์ฐ์ฐ ..โญ๏ธ
System.out.println("div2 = " + div2);
int mod = a % b;
System.out.println("mod = " + mod);
์ฐ์ฐ์ | ์ค๋ช | ์์ | ๊ฒฐ๊ณผ ์์ |
---|---|---|---|
= | ๋์ ์ฐ์ฐ์ | int a = 5; | a = 5 |
+= | ๋ํ ํ ๋์ | a += 2; | a = a + 2 |
-= | ๋บ ํ ๋์ | b -= 3; | b = b - 3 |
*= | ๊ณฑํ ํ ๋์ | c *= 2; | c = c * 2 |
/= | ๋๋ ํ ๋์ | d /= 4; | d = d / 4 |
%= | ๋๋จธ์ง ํ ๋์ | e %= 3; | e = e % 3 |
int num = 5;
num+= 3; //๋ํ๊ณ ๋์
ํด์ค๋ค
System.out.println("num = " + num); // 8
num -= 2; // num = num -2;
System.out.println("num = " + num);//6
num *= 2; // num = num * 2;
System.out.println("num = " + num);//12
num /= 3; // num = num / 3;
System.out.println("num = " + num);//4
num %= 3; // num = num % 3;
System.out.println("num = " + num);//1
์ฐ์ฐ์ | ์ค๋ช | ์ ์ ์ฐ์ฐ ์์ | ํ์ ์ฐ์ฐ ์์ | ๊ฒฐ๊ณผ ์์ |
---|---|---|---|---|
++ | ์ฆ๊ฐ ์ฐ์ฐ์ | ++a | a++ | ์ ์ ์ฐ์ฐ: a = a + 1 ํ ์ฌ์ฉ,
ํ์ ์ฐ์ฐ: a ์ฌ์ฉ ํ a = a + 1 |
-- | ๊ฐ์ ์ฐ์ฐ์ | --a | a-- | ์ ์ ์ฐ์ฐ: a = a - 1 ํ ์ฌ์ฉ, ํ์ ์ฐ์ฐ: a ์ฌ์ฉ ํ a = a - 1 |
1๏ธโฃ ์ ์ ์ฐ์ฐ ++i
int a = 5; //๋จผ์ ์ฆ๊ฐ ํ ์ถ๋ ฅ
System.out.println("++a: " + (++a)); // 6
System.out.println("ํ์ฌ a ๊ฐ: " + a); // 6
2๏ธโฃํ์ ์ฐ์ฐ i++
int b = 5; //์ถ๋ ฅ ํ ์ฆ๊ฐ
System.out.println("b++: " + (b++)); // 5 โญ๏ธ(๋ค๋ฅธ์ )
System.out.println("ํ์ฌ b ๊ฐ: " + b); // 6
์ฐ์ฐ์ | ์ค๋ช | ์์ | ๊ฒฐ๊ณผ ์์ |
---|---|---|---|
== | ๋ ๊ฐ์ด ๊ฐ์์ง ๋น๊ต | 5 == 5 | true |
!= | ๋ ๊ฐ์ด ๋ค๋ฅธ์ง ๋น๊ต | 5 != 3 | true |
< | ์ผ์ชฝ ๊ฐ์ด ์ค๋ฅธ์ชฝ ๊ฐ๋ณด๋ค ์์์ง ๋น๊ต | 3 < 5 | true |
> | ์ผ์ชฝ ๊ฐ์ด ์ค๋ฅธ์ชฝ ๊ฐ๋ณด๋ค ํฐ์ง ๋น๊ต | 5 > 3 | true |
<= | ์ผ์ชฝ ๊ฐ์ด ์ค๋ฅธ์ชฝ ๊ฐ๋ณด๋ค ์๊ฑฐ๋ ๊ฐ์์ง ๋น๊ต | 3 <= 5 | true |
>= | ์ผ์ชฝ ๊ฐ์ด ์ค๋ฅธ์ชฝ ๊ฐ๋ณด๋ค ํฌ๊ฑฐ๋ ๊ฐ์์ง ๋น๊ต | 5 >= 5 | true |
1๏ธโฃ ๋ ๊ฐ์ด ๊ฐ์ผ๋ฉด true , ๋ค๋ฅด๋ฉด false๋ฅผ ๋ฐํ
System.out.println("10 == 10: " + (10 == 10)); // true
2๏ธโฃ ๋ ๊ฐ์ด ๊ฐ์ผ๋ฉด true , ๋ค๋ฅด๋ฉด false๋ฅผ ๋ฐํ
System.out.println("10 != 5: " + (10 != 5)); // true
3๏ธโฃ >, < ,<=,>= ํฌ๊ธฐ ๋น๊ต ์ฐ์ฐ์ ๋ ผ๋ฆฌ์ ๋ง์ผ๋ฉด true๋ฅผ ๋ฐํ
System.out.println(" 10 < 5 : " +(10 < 5)); // false
System.out.println(" 10 >= 5 : " +(10 >= 10)); //true
System.out.println(" 10 <= 5 : " +(10 <= 5)); // false
์ฐ์ฐ์ | ์ค๋ช | ์์ | ๊ฒฐ๊ณผ ์์ |
---|---|---|---|
! | ๋ถ์ (NOT) | !(true) | false |
&&& | ๋ ผ๋ฆฌ AND (๋ ์กฐ๊ฑด์ด ๋ชจ๋ ์ฐธ์ผ ๋ ์ฐธ) | true && false | false |
|| | ๋ ผ๋ฆฌ OR (๋ ์ค ํ๋๋ง ์ฐธ์ด๋ฉด ์ฐธ) | true || false | true |
AND / && ๋ ๋ค ์ฐธ์ผ ๋ true (์: true && false โ false)
OR/|| ํ๋๋ผ๋ ์ฐธ์ด๋ฉด true (์: false || true โ true)
NOT/! ๋ฐ๋๋ก ๋ฐ๊ฟ์ค(์: !true โ false)
int age = 20;
boolean isStudent = true;
System.out.println(age > 18 || isStudent); // true
1๏ธโฃ AND๋ ๋์กฐ๊ฑด์ด ๋ชจ๋ ์ฐธ์ผ๋ true
System.out.println("true && true: " + (true && true)); // true
System.out.println("true && false: " + (true && false)); // false
System.out.println("false && false: " + (false && false)); // false
2๏ธโฃOR ๋์ค ํ๋๋ง ์ฐธ์ด๋ฉด true
System.out.println("true || false: " + (true || false)); // true
System.out.println("false || false: " + (false || false)); // false
System.out.println("true || true: " + (true || true)); // true
3๏ธโฃNOT ์ฐ์ฐ์ false๋ก, false ์ผ๋ true ๋ก ๋ณ๊ฒฝ
System.out.println("!true: " + (!true)); // false
System.out.println("!false: " + (!false)); // true
์ฐ์ฐ์ | ์ค๋ช | ์์ | ๊ฒฐ๊ณผ ์์ |
---|---|---|---|
equals() | ๋ฌธ์์ด ๋ด์ฉ์ด ๊ฐ์์ง ๋น๊ต (๋์๋ฌธ์ ๊ตฌ๋ถ) | "hello".equals("hello") | true |
equals() | ๋ฌธ์์ด ๋ด์ฉ์ด ๋ค๋ฅธ์ง ๋น๊ต (๋์๋ฌธ์ ๊ตฌ๋ถ) | "hello".equals("Hello") | false |
String text1 = "Hello";
String text2 = "Hello";
boolean isEqual = text1.equals(text2);
System.out.println("text1๊ณผ text2๊ฐ ๊ฐ์๊ฐ? " + isEqual);
์ถ๋ ฅ๊ฒฐ๊ณผ
text1๊ณผ text2๊ฐ ๊ฐ์๊ฐ? true
โ๏ธ if๋ฌธ์ ๊ฑฐ์ง,false์ผ ๊ฒฝ์ฐ์๋ ์คํํ์ง ์๋๋ค!
1. String light = "์ด๋ก๋ถ"; ๋ณ์์ ์ฅ
2. light ์ด๋ก๋ถ if ์กฐ๊ฑด ํ์ธ
3. true ๋ฉด ์คํ "๊ฑด๋์ธ์"
4. if-else์ ์กฐ๊ฑด์ด ๊ฑฐ์ง์ผ ๊ฒฝ์ฐ ์ฒ๋ฆฌ
๐ฉ if๋ฌธ
public class Main {
public static void main(String[] args) {
String light = "์ด๋ก๋ถ";
if (light.equals("์ด๋ก๋ถ")) {
System.out.println("๊ฑด๋์ธ์!");
}
}
}
๐ฉ if-else๋ฌธ
public class Main {
public static void main(String[] args) {
String light = "์ด๋ก๋ถ";
// (light == "์ด๋ก๋ถ")
if (light.equals("์ด๋ก๋ถ")) {
System.out.println("๊ฑด๋์ธ์!");
}
System.out.println("๋ฉ์ถ์ธ์!"); โ
}
๐ฉ else-if๋ฌธ
public class Main {
public static void main(String[] args) {
String light = "์ด๋ก๋ถ";
if (light.equals("์ด๋ก๋ถ")) {
System.out.println("๊ฑด๋์ธ์!");
} else if (light.equals("๋
ธ๋๋ถ")) {
System.out.println("์ฃผ์ํ์ธ์!");
} else {
System.out.println("๋ฉ์ถ์ธ์!");
}
// โ
๋ค์์ฝ๋ ์งํ
}
}
๐ธ if ์์
public class Main {
public static void main(String[] args) {
String light = "๋นจ๊ฐ๋ถ";
if ("light".equals("์ด๋ก๋ถ")) {
System.out.println("๊ฑด๋์ธ์");
} else if (light.equals("๋
ธ๋๋ถ")) {
System.out.println("์ฃผ์ํ์ธ์");
} else if(light.equals("๋นจ๊ฐ๋ถ")){
System.out.println("๋ฉ์ถ์ธ์");
} else {
System.out.println("์๋ชป๋์
๋ ฅ์
๋๋ค.");
}
}
}
}
๋ณ์ ํ์ | ์ค๋ช | ์ฌ์ฉ ์์ |
---|---|---|
int | ์ ์ ๊ฐ์ ์ฌ์ฉ |
|
char | ๋ฌธ์ ๊ฐ ์ฌ์ฉ |
|
String | ๋ฌธ์์ด ๊ฐ ์ฌ์ฉ |
|
boolean | ๋ถ๋ฆฌ์ธ ๊ฐ์ ์ฌ์ฉ |
|
์ด๊ฑฐํ ๊ฐ์ ์ฌ์ฉ |
|
int number = 1;
switch (number) {
case 1:
System.out.println("1์
๋๋ค.");
break;
case 2:
System.out.println("2์
๋๋ค");
break;
default:
System.out.println("1๋ ์๋๊ณ 2๋ ์๋๋๋ค.");
}
for (์์์กฐ๊ฑด; ์ข
๊ฒฐ์กฐ๊ฑด; ์กฐ๊ฑด๋ณํ์์) {
}
for (int i = 1; i <= 10; i++) {
์์์กฐ๊ฑด / ์ข
๊ฒฐ์กฐ๊ฑด / ์กฐ๊ฑด๋ณํ์์
System.out.println("์๋
ํ์ธ์!"); > ๋ฐ๋ณตํ ๋ช
๋ น๋ฌธ x 10
}
public class Robot {
public static void main(String[] args) {
int customers = 5;
for (int i = 1; i <= customers; i++) {
if (i == 4) { โ
3๋ช
๊น์ง๋ง ํ์
break; โ
๋ฐ๋ณต ํ์ถ!
}
System.out.println(i + "๋ฒ์งธ ์๋, ์๋
ํ์ธ์!");
}
System.out.println("๋ฐ๋ณต๋ฌธ์ด ์ข
๋ฃ๋์์ต๋๋ค.");
}
}
// ์ถ๋ ฅ
์ค๋์ ์๋ ์๋ฅผ ์
๋ ฅํ์ธ์: 5
1๋ฒ์งธ ์๋, ์๋
ํ์ธ์!
2๋ฒ์งธ ์๋, ์๋
ํ์ธ์!
3๋ฒ์งธ ์๋, ์๋
ํ์ธ์!
๋ฐ๋ณต๋ฌธ์ด ์ข
๋ฃ๋์์ต๋๋ค.
public class Robot {
public static void main(String[] args) {
int customers = 5;
for (int i = 1; i <= customers; i++) {
if (i == 2) { โ
2๋ฒ์งธ ์๋ ๋ง์์๋ฌ
continue; โ
์๋ ์คํต
}
System.out.println(i + "๋ฒ์งธ ์๋, ์๋
ํ์ธ์!");
}
System.out.println("๋ฐ๋ณต๋ฌธ์ด ์ข
๋ฃ๋์์ต๋๋ค.");
}
}
์ค๋์ ์๋ ์๋ฅผ ์
๋ ฅํ์ธ์: 5
1๋ฒ์งธ ์๋, ์๋
ํ์ธ์!
3๋ฒ์งธ ์๋, ์๋
ํ์ธ์!
4๋ฒ์งธ ์๋, ์๋
ํ์ธ์!
5๋ฒ์งธ ์๋, ์๋
ํ์ธ์!
๋ฐ๋ณต๋ฌธ์ด ์ข
๋ฃ๋์์ต๋๋ค.
while (์ข ๊ฒฐ์กฐ๊ฑด) {
๋ฐ๋ณตํ ๋ช ๋ น๋ฌธ;
}
int i = 1;
while (i <= 10) { โ
1์ 10๋ณด๋ค ์์์ผ๋ก ๋ฐ๋ณต!
System.out.println("i ๊ฐ 10 ๋ณด๋ค ์์ต๋๋ค.");
i++; // โ
์์ ๊ฒฝ์ฐ ๋ฌดํ๋ฃจํ ๋ฐ์
}
do {
๋ฐ๋ณตํ ๋ช ๋ น๋ฌธ..
} while (์ข ๊ฒฐ ์กฐ๊ฑด)
int i = 1;
do {
System.out.println("์๋ ํ์ธ์.");
i++;
} while (i <= 10);
๐ด new ํค์๋๋ฅผ ์ฌ์ฉํด ๋ฐฐ์ด์ ์ ์ธ
์๋ฃํ[] ๋ณ์์ด๋ฆ = new ์๋ฃํ[๋ฐฐ์ด์๊ธธ์ด]; // ๋ฐฐ์ด์ ์ธ
1๏ธโฃ ์ ์ํ ๋ฐฐ์ด ์ ์ธ
arr = new int[5]; //๊ธธ์ด๊ฐ 5์ธ ์ ์ํ
2๏ธโฃ ๋ฌธ์์ด ๋ฐฐ์ด ์ ์ธ
String[] arrA = new String[5]; //๊ธธ์ด๊ฐ 5์ธ ๋ฌธ์์ด ๋ฐฐ์ด์ ์ธ
3๏ธโฃ๋
ผ๋ฆฌํ ๋ฐฐ์ด์ ์ธ
boolean[] arrB = new boolean[3]; //// ๊ธธ์ด๊ฐ 3์ธ ๋
ผ๋ฆฌํ ๋ฐฐ์ด ์ ์ธ
int[] arr = {10, 20, 30, 40, 50};
System.out.println("๋ฐฐ์ด์ 1๋ฒ์งธ ์์ = " + arr[0]);
System.out.println("๋ฐฐ์ด์ 2๋ฒ์งธ ์์ = " + arr[1]);
System.out.println("๋ฐฐ์ด์ 3๋ฒ์งธ ์์ = " + arr[2]);
System.out.println("๋ฐฐ์ด์ 4๋ฒ์งธ ์์ = " + arr[3]);
System.out.println("๋ฐฐ์ด์ 5๋ฒ์งธ ์์ = " + arr[4]);
โ๏ธ ์ธ๋ฑ์ค(index)ํ์ฉํด ๊ฐ์ ์ฝ์
์์
int[] arr = new int[5];
arr[0] = 100; // โ
1๋ฒ์งธ ์์๋ฅผ 100๋ก ์ค์
arr[1] = 200; // โ
2๋ฒ์งธ ์์๋ฅผ 200๋ก ์ค์
arr[2] = 300; // โ
3๋ฒ์งธ ์์๋ฅผ 300๋ก ์ค์
arr[3] = 400; // โ
4๋ฒ์งธ ์์๋ฅผ 400๋ก ์ค์
arr[4] = 500; // โ
5๋ฒ์งธ ์์๋ฅผ 500๋ก ์ค์
arr[5] = 600; // โ ์ ๊ทผ ๋ถ๊ฐ
System.out.println("๋ฐฐ์ด์ 1๋ฒ์งธ ์์๋ 0๋ฒ์งธ ์ธ๋ฑ์ค: " + arr[0]); // 100
System.out.println("๋ฐฐ์ด์ 2๋ฒ์งธ ์์๋ 1๋ฒ์งธ ์ธ๋ฑ์ค: " + arr[1]); // 200
System.out.println("๋ฐฐ์ด์ 3๋ฒ์งธ ์์๋ 2๋ฒ์งธ ์ธ๋ฑ์ค: " + arr[2]); // 300
System.out.println("๋ฐฐ์ด์ 4๋ฒ์งธ ์์๋ 3๋ฒ์งธ ์ธ๋ฑ์ค: " + arr[3]); // 400
System.out.println("๋ฐฐ์ด์ 5๋ฒ์งธ ์์๋ 4๋ฒ์งธ ์ธ๋ฑ์ค: " + arr[4]); // 500
๋ณ์๋ฅผ ์ธ๋ฑ์ค๋ก ํ์ฉํ๊ธฐ
int[] arr = {1, 2, 3, 4, 5};
for (int i = 0; i < arr.length; i++) { โญ๏ธ ์ซ์๋์ i ํ์ฉ
System.out.println("numbers[" + i + "] = " + arr[i]);
}
for (int i = 0; i < arr.length; i++) {
System.out.println("์ธ๋ฑ์ค:"+ i+",๊ฐ:"+ arr[i]); }
for(๋ฐฐ์ด์์์ : ๋ฐฐ์ด) {
๋ช ๋ น๋ฌธ;
}
int[] arr = {100, 200, 300, 400, 500};
for (int a : arr) {
System.out.println("๊ฐ = " + a);
}
boolean[][] board = new boolean[2][2]; 2์ฐจ์ ๋ฐฐ์ด ์ ์ธ
boolean[][] board = {
{true, false}, 0ํ์ 0์ด, 0ํ์ 1์ด,
{false, true} 1ํ์ 0์ด, 1ํ์ 1์ด
};
public class Calculator {
int sum(int value1, value2) { // โ
๋ฉ์๋ ์ ์ธ๋ ๊ณณ
int result = value1 + value2;
return result;
}
}
public class Calculator {
void sum(int value1, value2) { โ
๋ฉ์๋ํ์ผ void ์์
int result = value1 + value2;
System.out.println("๊ณ์ฐ๊ฒฐ๊ณผ๋ " + result + "์
๋๋ค.");
}
}
public class Main {
public static void main(String[] args {
Calculator calculator = new Calculator();
calculator.sum(1, 2); โ
๋ฐํ๋ฐ์ดํฐ ์์
}
}
public class Calculator {
int sum(int value1, value2) {
int result = value1 + value2;
return result; // โ
result ๊ฐ ๋ฐํ
}
}
public class Main {
public static void main(String[] args {
Calculator calculator = new Calculator();
int result = calculator.sum(1, 2); // โ
๋ฐํ๋ ๋ฐ์ดํฐ๋ฅผ result ๋ณ์์ ๋ด์ ์ฌ์ฉ
System.out.println("๊ณ์ฐ๊ฒฐ๊ณผ๋ " + result + "์
๋๋ค.");
}
}