일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JavaScript
- instr
- jdbc driver
- sql랭킹
- join
- array
- 자바기초
- sql업데이트
- SPLIT
- xmldom
- MSSQL보안
- 이미지세로길이
- tempDB
- 인젝션
- XML
- asp함수
- FileSystemObject
- sql순위
- ERD
- 한글입력체크
- VarType
- update
- javascript 한글입력체크
- inner join
- VARIABLE
- 이미지가로길이
- wap
- 정규식
- WML
- injection
- Today
- Total
목록분류 전체보기 (384)
3초기억력
//// 5명의 이름을 저장하는 배열 선언! import java.util.Scanner; public class Array2_1 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String[] name = new String[5]; for(int i=0;i
//// 3명의 키를 입력하는 배열 선언 import java.util.Scanner; public class Array2_0 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); double[] height = new double[3]; for(int i = 0; i < 3; i++) { System.out.println((i+1)+"번째 사람의 키는? "); height[i] = sc.nextDouble(); } System.out.println("========결과========"); for(int i=0; i
// 배열(Array) - 파생자료형 //같은 타입에 변수들록 이루어진 집합 //배열 선언방법 //자료형[] 배열명 = new 자료형[길이];int[] arr = new int[5]; //자료형 배열명[];int arr[];// 이렇게도 쓰긴한다. 주로 위 표현으로.. // 5개의 정수를 저장하는 배열 선언! 각 배열 출력! public class Array { public static void main(String[] args) { int[] Array = new int[5]; Array[0] = 10; Array[1] = 20; Array[2] = 30; Array[3] = 40; Array[4] = 50; System.out.println("Array[0]="+Array[0]); System.out..
// 가위바위보 // com - Random 클래스에서 자동으로 //user - 입력값 받기 //13 = win -2 //21 = win 1 //32 = win 1 import java.util.Scanner; import java.util.Random; public class Game { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Random ran = new Random(); System.out.println("================================"); System.out.println(" 가위바위보 게임입니다."); System.out.println("1.가위 2.바위 3.보 4.종..
//// random 클래스 : 임의의 난수를 출력 // import java.util.Random; public class randomEx { public static void main(String[] args) { Random ran = new Random(); // 정수를 출력하는 메서드 : nextInt();-21억 ~ 21억사이 정수 1개 System.out.println(ran.nextInt()); // 10 개 중 1개 // 0 ~ 갯수 -1 에서만 추출됨 System.out.println(ran.nextInt(10)); // 0 ~ 9 System.out.println(ran.nextInt(3)); // 0 ~ 2 // ran.nextInt(10) + 시작수 : 시작수 ~ 10 System..
//while문 무한반복 //while(true) {} //무한적으로 정수를 입력받아서 // 0을 입력하면 프로그램 종료!! import java.util.Scanner; public class WhileEx_2 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while(true) { System.out.print("정수입력 : "); int a = sc.nextInt(); System.out.println("입력값 : "+ a); if (a == 0) { System.out.println("반복 종료!"); break; } } } }
//* //** //*** public class WhileEx_1 { public static void main(String[] args) { int i = 1; while(i < 4) { int j = 1; while(j
// 2단 부터 9단까지 public class WhileEx { public static void main(String[] args) { int x = 2; while(x < 10) { int y = 1; while(y < 10) { System.out.println(x + " * " + y + " = " + (x * y)); y++; } x++; System.out.println(); } } }
// 정수를 무한적으로 입력받다가 8의 배수가 5개 입력되면 반복문 종료하기 import java.util.Scanner; public class ForEx_1 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int count = 0; for(;;) { System.out.println("정수입력1 > "); int b = sc.nextInt(); if (b % 8 == 0) { count++; } if (count == 5) break; } System.out.println("반복종료11!"); System.out.println("========================="); Scanner input2 ..