일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JSP
- Java
- 생성자
- 이클립스
- 기본
- 배열
- 국제화
- HTML
- Graphic
- 메소드
- layout
- 안드로이드
- Menu
- mybatis
- 에러페이지
- paint
- 클래스
- Spring
- struts2
- Eclips
- OGNL
- 어노테이션
- 오버로딩
- 예외처리
- 메서드
- Android
- oracle
- 전화걸기
- AWT
- JavaScript
- Today
- Total
목록배열 (6)
note
자바와의 차이점은 [] 와 {} 이다 출력되는 형식을 잘 살펴 보면 됩니다 자바에선 배웠던 배열이랑은 다른것을 알 수 있다
표현식 예제1 - 배열의 내용 출력 배열의 첨자 배열의 내용 스크립트릿과 표현식 사용 배열의 첨자 배열의 내용
public class ArrayEx12 { public static void main(String[] args){ char[] abc = {'A','B','C','D'}; char[] number = {'0','1','2','3','4','5','6', '7','8','9'}; System.out.println(new String(abc)); System.out.println(new String(number)); //배열 abc와 number를 붙여서 하나의 배열 result로 만든다. char[] result = new char[abc.length + number.length]; System.arraycopy(abc, 0, result, 0, abc.length); System.arraycopy(nu..
public class Score2 {//Array로 성적짜기 한사람에 대한 데이터 1차배열 public static void main(String[] args){ java.util.Scanner input=new java.util.Scanner(System.in); String[] subname = {"국어","영어","수학"}; //0국어 1영어 2수학 3총합 int[] sub = new int[subname.length + 1]; float avg = 0.0f; //데이터 입력 부분 for (int i= 0; i < sub.length - 1; i++){ do{ System.out.print(subname[i] + " = "); sub[i] = input.nextInt(); } while (sub[..