일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 다형성
- jquery
- 단축키
- 야구게임
- 형변환
- 25가지 효율적인 sql작성법
- while
- 상속예제
- 전체
- 추상클래스
- Full text
- 업캐스팅
- 상속
- 다운캐스팅
- 페이징
- angular2
- 전자정부
- 스프링
- 로또
- IBatis procedure
- full text indexing
- 가변인자
- Login with OAuth Authentication
- 이클립스
- 자바 야구게임
- 자바
- Random
- 전체텍스트
- Validations
- Today
- Total
목록JAVA/1. 기본문법01 (8)
nalaolla
public class Test07Variable { public static void main(String[] args) { // 변수 : 소문자로 시작권장, 연결자(첫연결문자) 대문자 권장 //_(언더바) or $를 제외한특수문자 불가 System.out.println("variale"); //변수선언 : 타입을 정의하는 행위 //값대입 : =(대입연산자)를 사용해서 값 변경. //int korScore = 100; 변수초기화 (선언과 동시에 초기화) int korScore; //변수선언 int a,b; // ',' >> 연결연산자 korScore = 100; //값대입 또는 변경 float avg = 3.14f; String korStr = "korean language : "; String avg..
package test.com; public class Test06Type { public static void main(String[] args) { System.out.println("type"); //타입(자료형) : 상수(값, 리터럴)을 담는 그릇 //기본 자료형8개, 참조자료형(문자열, 객체, 배열) //1. byte(정수) : 1byte >> 8bit 0000 0000 //자바의 음수표기는 bit첫숫자가1로 표기 System.out.println("1. byte(정수)" + Byte.MIN_VALUE + " ~ " +Byte.MAX_VALUE); byte b1 = -128; System.out.println(b1); b1 = 0; b1 = (byte) 130; System.out.println..
package test.com; import java.text.SimpleDateFormat;import java.util.*; public class Test05Board { public static void main(String[] args){ // 게시판 프로그램을 작성하세요. SimpleDateFormat dt = new SimpleDateFormat("yyyy.MM.dd", Locale.KOREA); Date currentTime = new Date(); String today = dt.format(currentTime); final String TITLE = "[게시판 프로그램]"; final String LINE = "=================="; System.out.println(T..
package test.com; import java.util.Scanner; public class Test04Score2 { public static void main(String[] args) { Test04ScoreSub scoresub = new Test04ScoreSub(); scoresub.ScorePrint(); } } class Test04ScoreSub{ public void ScorePrint(){ System.out.println("[성적관리 프로그램]"); System.out.println("========================="); Scanner scanner = new Scanner(System.in); System.out.println("국어점수입력"); int ko..
package test.com; public class Test04Score { public static void main(String[] args) { //성적처리 프로그램 String nKor = "국어"; String nEng = "영어"; String nMath = "수학"; int korScore = 100; int engScore = 49; int mathScore = 98; int totalSum = korScore+engScore+mathScore; double totalAvg = totalSum/3; String inputComment = " 점수를 입력학세요 : "; String line = "========================"; //변수의 상수 처리를 위한 final fin..
package test.com; public class Test03Sysout { public static void main(String[] args) { //System 출력(콘솔출력) System.out.println(1);//숫자 : ""표기생략 System.out.println(10); System.out.println(3.14); System.out.println(-1200); System.out.println("TEXT"); //문자열표기 System.out.println('민'); //문자 : ''표기 System.out.println(11+22); System.out.println(""+11+22); System.out.println(11+22+""); System.out.println("..
package test.com; public class Test02Comment { public static void main(String[] args) { //main coding >> ctrl + space //주석 : 단축키 Ctrl + Shift + c, // Ctrl + / /* 한줄또는 여러줄 주석(주석하고자 하는 코딩 drag후) : * Ctrl + Shift + / * 주석해제 : Ctrl + Shift + */ //줄정리 단축키 : Ctrl + Shift + f// 'sysout' + Ctrl + Shift = System.out.println(); } }
//package 이름package test.com; //class 선언public class Test01Hello { public static void main(String[] args) { System.out.println("Hello"); System.out.println("World"); } }=================================================================자바의 가장 기초적인 문법 [라인설명]2. 패키지 선언5. 클래스 선언7. Main메소드 선언9~11. console창에 해당 문자열 출력