02. 클래스와 객체 - 02. 객체지향 프로그래밍과 클래스 -2 package classpart; //public: 접근 제어자. public class Student { public int StudentID;// 멤버변수, 속성 public String studentName; public String address; public void showStudentInfo() { System.out.println(studentName + "," + address); } } /* * 자바 클래스안에 여러개의 클래스가 들어갈 수 있지만, public 은 하나만 달 수 있다.그리고, public class 와 java * file 은 동일해야한다. */ package classpart; public class S..
21. 제어문 - 09. 코딩해 보세요 1. 연산자와 두 수를 변수로 선언한 후, 사칙연산이 되는 프로그램을 구현. if - else if -else, switch-case 두 방식 이용 2. 다이아몬드 출력 package operator; public class OperatorEx1 { public static void main(String[] args) { // 사칙연산 char operator = '+'; int num1 = 24; int num2 = 20; switch (operator) { case '+': { System.out.println(""+num1+operator+num2+"="+(num1 + num2));break; } case '-': System.out.println(""+num..
19. 제어문 - 07. for문, 중첩 반복문 - 2 | 각 반복문의 쓰임 for 의 무한루프 for(;;){ } | 중첩 반복문 반복문이 중첩되어 구현되어있는 경우 반복문 내부에 또 다른 반복문이 있음 외부 반복문과 내부 반복문 간의 변숫값 변화에 유의해가며 구현해야함. package loopexample; public class NestedLoop { public static void main(String[] args) { // 2 X 3 int dan = 2; int count = 1; // for 문 /*for( dan = 2; dan
17. 제어문 - 05. while문, do-while문 - 2 | while 문과 do-while 문 비교 입력받는 정수를 모두 더해줍니다. 입력된 정수가 0이면 반복문을 빠져 나옵니다. while: 먼저 조건 체크 do while: 그냥 한번 돌기 package loopexample; import java.util.Scanner; public class DoWhileExample { public static void main(String[] args) { /*int num = 1; int sum = 0; do { sum += num; num++; }while(num
15. 제어문 - 03. swith-case문 | switch-case 문 조건이 정수, 문자열 값으로 그 값에 따라 수행결과가 달라지는 경우, if-else if-else 와 같은 의미로 수행 [단축키] 자동 import => ctrl + shift + o [단축키] 자동 완성 => ctrl + space package ifexample; import java.util.Scanner; public class SwitchCase { public static void main(String[] args) { // TODO Auto-generated method stub Scanner scanner = new Scanner(System.in); int rank = scanner.nextInt(); char m..
13. 제어문 - 01. if문 - 1 | if 문, if-else 문 조건식의 결과에 따라 수행문이 실행되는 조건문 package ifexample; public class IfExample1 { public static void main(String[] args) { char gender = 'M'; if ( gender == 'F') { System.out.println("여성입니다."); } else if(gender =='M'){ System.out.println("남성입니다."); } else { System.out.println("여성,남성이 아닙니다."); } } } 14. 제어문 - 02. if문 - 2 package ifexample; import java.util.Scanner; pu..
11. 연산자 - 02. 관계, 논리, 조건, 비트 연산자 - 1 |관계연산자 |논리연산자 앞에가 false 면 아예 뒤에 연산이 안될 수 있다. 앞에가 true package operator; public class OperatorEx3 { public static void main(String[] args) { int num1 = 10; int i = 2; boolean value = ( (num1 = num1 + 10) > 10 ) && ( (i = i+2) num3)..
- Total
- Today
- Yesterday
- 자바 인강이 듣고 싶다면 => https://bit.ly/3ilMbIO
- 쉘스크립트
- https://cupjoo.tistory.com/96
- CKA
- 쿠버네티스
- linter
- 언제나 함께해요
- 자스계의백과사전
- 자바 인강
- 유용한웹사이트
- 배포
- 스프링 프레임워크 핵심 기술
- 크론탭
- 자바인강
- django
- 마크다운
- pycharm
- 세션불일치
- 디비
- 패스트 캠퍼스
- 환경세팅
- 주피터노트북 설치
- 파이참
- AWS
- 자바
- 패스트캠퍼스
- 참고 링크
- EC2
- hot
- vim
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |