πβ μ μ ν κ°λ₯Ό μ λ ₯λ°κ³ , 1λΆν° μ λ ₯λ°μ μ μκΉμ§μ ν©μ κ³μ°ν΄μ μΆλ ₯νμΈμ.
import java.util.Scanner;
public class Application2 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("μ μλ₯Ό μ
λ ₯νμΈμ : ");
int num = sc.nextInt();
int result = 0;
for(int i = 1; i <= num; i++) {
result += i;
}
System.out.println("1λΆν° " + num + "κΉμ§μ ν© : " + result);
}
}
πβ 1λΆν° μ λ ₯λ°μ μ μκΉμ§μ μ§μμ ν©μ ꡬνμΈμ.
import java.util.Scanner;
public class Application3 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("μ μλ₯Ό μ
λ ₯νμΈμ : ");
int num = sc.nextInt();
int result = 0;
for(int i = 1; i <= num; i++) {
if(i % 2 == 0) {
result += i;
}
}
System.out.println("1λΆν° " + num + "κΉμ§ μ§μμ ν© : " + result);
}
}
πβ λ¬Έμμ΄μ μ λ ₯ λ°μμ λ¬Έμμ΄μ κ° μΈλ±μ€λ³λ‘ ν κΈμμ© μΆλ ₯νμΈμ.
π© Example Input & Output
λ¬Έμμ΄μ μ
λ ₯νμΈμ :
Hyoyeon
0 : H
1 : y
2 : o
3 : y
4 : e
5 : o
6 : n
import java.util.Scanner;
public class Application1 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("λ¬Έμμ΄μ μ
λ ₯νμΈμ : ");
String word = sc.nextLine();
for(int i = 0; i <= word.length(); i++ )
System.out.println(i + " : " + word.charAt(i));
}
}
π¬ Overall Comment
* μ²μμλ μμ΄λμ΄κ° μμ΄μ κ°νΌλ₯Ό λͺ» μ‘μμ§λ§ μ¬λ¬ ν€μλλ₯Ό κ²μνμ¬ μ
λ ₯λ°μ λ¬Έμμ΄μ κΈΈμ΄(.length)λ₯Ό
ꡬνλ λ©μλλ₯Ό μ°Ύμλ΄μλ€. iλ μ
λ ₯ν λ¬Έμμ΄μ κΈΈμ΄λ§νΌ μ¦κ°νκ³ μ
λ ₯ν λ¬Έμμ΄μ μλ¦Ώκ°μ μΆλ ₯(.charAt)ν΄μ£Όλ
λ©μλλ₯Ό μ¬μ©νμ¬ λ΅μ ꡬνλ€.
πβ λ°λ³΅λ¬Έμ μ΄μ©νμ¬ μνλ²³ μλ¬Έμ 'a'λΆν° 'z'κΉμ§λ₯Ό κ°ν μμ΄ μ°¨λ‘λ‘ μΆλ ₯νμΈμ.
public class Application2 {
public static void main(String[] args) {
for(int i = 97; i <= 122; i++ ) {
System.out.print((char)i);
}
}
}
πβ μ μλ₯Ό μ λ ₯λ°μ 1λΆν° μ λ ₯λ°μ μ μκΉμ§ νμμ΄λ©΄ "μ", μ§μμ΄λ©΄ "λ°"μ΄ μ μλ§νΌ λμ λμ΄ μΆλ ₯λκ² μμ±νμΈμ.
import java.util.Scanner;
public class Application3 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("μ μλ₯Ό μ
λ ₯νμΈμ : ");
int num = sc.nextInt();
for(int i = 1; i <= num; i++) {
if(i % 2 == 1) {
System.out.print("μ");
} else {
System.out.print("λ°");
}
}
}
}