본문 바로가기

아카이브/항해99 취업 리부트 코스 학습일지

[항해 99 취업 리부트 코스 학습일지] Java 기초 - 입출력, 반복문, 조건문

728x90

 

이번 주 목표

알고리즘 풀기

오늘 목표

알고리즘 풀기

오늘 한 것

알고리즘 풀기

오늘 스케줄

9:00 항해 99

7:00 TIL 작성

8:00 독서회 

9:00 못 푼 문제

11:00 GO 프로젝트

12:00 취침

1. Scanner Class

Scanner sc = new Scanner(System.in);
String input = sc.nextLine();
sc.close();

2. System.out.println

System.out.println("Hello, World!");

3. for 반복문

int sum = 0;
for (int i = 1; i <= 10; i++) {
    sum += i;
}
System.out.println("Sum: " + sum);

4. while 반복문

Scanner scanner = new Scanner(System.in);
int number = 0;

while(number != -1) {
  number = scanner.nextInt();
  System.out.println("You entered: " + number);
}

5. do-while 반복문

int i = 0;
do {
    System.out.println(i);
    i++;
} while(i < 10);

6. if 조건문

int score = 85;

if (score > 90) {
    System.out.println("Grade A");
} else if(score > 80) {
    System.out.println("Grade B");
} else {
    System.out.println("Grade C or below");
}

7. switch 조건문

int day = 4;

switch(day) {
    case 1:
        System.out.println("Monday");
        break;
    case 2:
        System.out.println("Tuesday");
        break;
    // 추가 케이스...
    default:
        System.out.println("Weekend");
        break;
}

 

8. 산술 연산자

+   -   *   /   %

9. 비교 연산자

==   !=    >   <   >=   <=

10. 논리 연산자

&&   ||   !

11. 대입 연산자

=   +=   -=

 

 


정리 

while 반복문

Scanner scanner = new Scanner(System.in);
int number = 0;

while(number != -1) {
  number = scanner.nextInt();
  System.out.println("You entered: " + number);
}

do-while 반복문

int i = 0;
do {
    System.out.println(i);
    i++;
} while(i < 10);

switch 조건문

int day = 4;

switch(day) {
    case 1:
        System.out.println("Monday");
        break;
    case 2:
        System.out.println("Tuesday");
        break;
    // 추가 케이스...
    default:
        System.out.println("Weekend");
        break;
}

 

 

 

KPT

Keep

하려고 하는 것

Problem

최선을 다하지 못하는 것

잠을 너무 열심히 자는 것

Try

잠 줄여 주세요....

소감

주님....

 

 

 

 

항해 개발자 취업 리부트 코스를 수강하고 작성한 콘텐츠 입니다.

 

IT 커리어 성장 코스 항해99, 개발자 취업부터 현직자 코스까지

항해99는 실무에 집중합니다. 최단기간에 개발자로 취업하고, 현직자 코스로 폭발 성장을 이어가세요. 실전 프로젝트, 포트폴리오 멘토링, 모의 면접까지.

hanghae99.spartacodingclub.kr