반응형

1. 배열의 랜덤 숫자 넣고 출력하기 ver1

import java.util.Random;
public class Hello{
public static void main(String[] args) {
	Random rand = new Random();
	final int size = 6;
	int[] array = new int[size];
	for(int i=0; i<10000; i++) {
		array [(int)(Math.random() * 6)]++;
		}
	for(int i=0; i<size; i++) {
		System.out.printf("%3d %3d \n", i+1, array[i]);
	}
	}
}
  1 1628 
  2 1635 
  3 1714 
  4 1670 
  5 1622 
  6 1731 

ver2

import java.util.Random;
public class Hello{
public static void main(String[] args) {
	final int size = 10;
	Random rand = new Random();
	int[] array = new int[size];
	for(int i=0; i<10; i++) {
		array[i] = rand.nextInt(10);
		System.out.print(array[i] + " ");
		}
	}
}
/*
6 4 9 1 2 1 7 2 2 4 
*/

 

반응형

'JAVA > 2020 프로그램' 카테고리의 다른 글

[JAVA] GUI 프로그래밍  (0) 2020.01.12
[JAVA] 로또 번호 추출 프로그램  (0) 2020.01.05
[JAVA] 숫자 출현횟수  (0) 2019.12.15
[JAVA] 가위바위보 게임  (0) 2019.12.08
[JAVA] 별찍기  (0) 2019.12.08
반응형

 

import java.util.Arrays;
import java.util.Scanner;
public class Hello{
public static void main(String[] args) {
	int[] n = {1,2,5,2,4,5,1,5,5,3,3,1};
	int cnt,j;
	for(int i=1; i<=5; i++) {
		for(j=0, cnt = 0; j<n.length; j++) {
			if(i == n[j]) {
				cnt ++;
			}
		}
		System.out.println(i +":" + cnt);
	}
	
	}
}
1:3
2:2
3:2
4:1
5:4
반응형

'JAVA > 2020 프로그램' 카테고리의 다른 글

[JAVA] 로또 번호 추출 프로그램  (0) 2020.01.05
[JAVA] 랜덤함수를 이용하여 숫자배열 만들기  (0) 2019.12.15
[JAVA] 가위바위보 게임  (0) 2019.12.08
[JAVA] 별찍기  (0) 2019.12.08
[JAVA] 알파벳 프로그램  (0) 2019.12.07
반응형

7. toString

Arrays.toString(values)

정수형 배열을 문자열로 변환하는 함수 

적용 

 

import java.util.Arrays;
import java.util.Scanner;
public class Hello{
public static void main(String[] args) {
	int[] n = {1,2,3,4,5};
	String get_values = Arrays.toString(n);
	System.out.println("values = "+ get_values);
	}
}

 

 

values = [1, 2, 3, 4, 5]

 

반응형

'JAVA > 문법' 카테고리의 다른 글

[JAVA] 추상클래스  (0) 2020.01.04
[JAVA] 클래스  (0) 2019.12.22
[JAVA] 배열  (0) 2019.12.15
[JAVA] loop  (0) 2019.12.08
[JAVA] random(랜덤) 함수  (0) 2019.12.08
반응형

1. 자바 배열 선언하기 

자료형[] 배열이름 = new 자료형[배열의 크기];

int array[];
int[] array;

위에 와 같이 선언은 되지만 

int array[5];

크기 지정이 안되기 때문에 위에와 같이 선언하면 오류가 발생함.

그렇기 때문에 

public class Hello{
public static void main(String[] args) {
	int[] array_v1 = new int[5];
	array_v1[0] = 20; 
	array_v1[1] = 40;
	array_v1[2] = 60;
	array_v1[3] = 80;
	array_v1[4] = 100;
	
	int[] array_v2 = {10, 30, 60, 90, 120};
	int[] array_v3 = new int[] {5, 10, 15, 20, 25};
	int[] array_v4;
	array_v4 = new int[5];
	array_v4[0] = 20; 
	array_v4[1] = 40;
	array_v4[2] = 60;
	array_v4[3] = 80;
	array_v4[4] = 100;
	}
}

이렇게 선언할 수 있다.

 

2. 배열 정렬

전 c언어에서는 정렬을 하기 위해서는 보통 2중 for문을 사용하곤 했다. 하지만 자바에서는 Arrays.sort(배열이름)이라는 이 한 문장으로 오름차순 배열을 할 수 있다. 

 

적용 

import java.util.Arrays;
import java.util.Scanner;
public class Hello{
public static void main(String[] args) {
	Scanner scanner = new Scanner(System.in);
	int array[] = new int[5];
	System.out.println("양수 5개를 입력하세요.");
	
	for(int i=0; i<5; i++) 
		array[i] = scanner.nextInt();
	
	Arrays.sort(array);
	System.out.println("가장 큰 수는 " + array[4] + "입니다.");
	scanner.close();
	}
}

결과 

양수 5개를 입력하세요.
30 20 24 56 18
가장 큰 수는 56입니다.

3. 다차원 배열 

자바에서 다차원 배열은 c에서의 다차원 배열과 매우 비슷한 모습을 볼 수 있다.

다만, 다른 점이 하나 있다면 배열을 선언하는 부분이다.

적용 

import java.util.Arrays;
import java.util.Scanner;
public class Hello{
public static void main(String[] args) {
	int[][] array = new int[3][4]; //2차원 배열선언 
	int i, k;
	int val = 1;
	for(i=0; i<3; i++) {
		for(k=0; k<4; k++) {
			array[i][k] = val;
			val ++;
		}
	}
	System.out.println("array[0][0]부터 array[2][3]까지 출력");
	for(i=0; i<3; i++) {
		for(k=0; k<4; k++) {
			System.out.printf("%3d", array[i][k]);
		}
		System.out.println("\n");
	}
}
}

결과

array[0][0]부터 array[2][3]까지 출력
  1  2  3  4

  5  6  7  8

  9 10 11 12

4. System.arraycopy()

System.arraycopy(src, srcPos, dest, destPos, length);

src : 복사하고자 하는 소스, 원본
srcPos :위의 소스에서 어느 부분부터 읽어올지 위치를 정함.
dest : 복사하려는 대상
destPos : 위에 dest에서 자료를 받을 때, 어느 부분부터 쓸지 시작위치를 정함.
length : 원본에서 복사본까지 얼마큼 읽어 올지 입력

 

적용

import java.util.Arrays;
import java.util.Scanner;
public class Hello{
public static void main(String[] args) {
	int[] array = {10,30,50,70,90,60};
	int[] array2 = new int[4];
	System.arraycopy(array, 2, array2, 1, 3);
	for(int i=0; i<array2.length; i++) {
		System.out.println("array["+i+"] = " + array2[i]);
		}
	}
}

결과

array[0] = 0
array[1] = 50
array[2] = 70
array[3] = 90

5. Arrays.copyof()

Arrays.copyof(Object dest, int length)

Object dest : 복사하려는 대상 
int length :  dest에서 시작해서 몇 개의 길이 만큼 복사할지 길이를 정함.

 

적용

import java.util.Arrays;
import java.util.Scanner;
public class Hello{
public static void main(String[] args) {
	int[] array = {10,30,50,70,90,60};
	int[] array2 = Arrays.copyOf(array,3);
	for(int i=0; i<array2.length; i++) {
		System.out.println("array["+i+"] = " + array2[i]);
		}
	}
}

 

결과

array[0] = 10
array[1] = 30
array[2] = 50

6. for - each

배열이나 나열의 언소를 순차 접근하는데 유용한 for 문

for(변수 : 배열 레퍼런스){
	for문 내용
}

for - each 문으로 정수 배열의 합을 구하는 예시 

int [] n = {1,2,3,4,5};
int sum = 0;
for(int k : n) {
	sum += k;
}

적용 

import java.util.Arrays;
import java.util.Scanner;
public class Hello{
public static void main(String[] args) {
	int[] n = {1,2,3,4,5};
	int sum =0;
	for(int k : n) {
		System.out.print(k + " ");
		sum  += k;
	}
	System.out.println("합은 "  + sum);
	String f[] = {"사과 ", "배", "바나나", "체리", "딸기", "포도"};
	for(String s: f) {
		System.out.print(s + " ");
		}
	}
}

결과 

1 2 3 4 5 합은 15
사과  배 바나나 체리 딸기 포도 

 

 

 

반응형

'JAVA > 문법' 카테고리의 다른 글

[JAVA] 클래스  (0) 2019.12.22
[JAVA] 배열 2  (0) 2019.12.15
[JAVA] loop  (0) 2019.12.08
[JAVA] random(랜덤) 함수  (0) 2019.12.08
[JAVA] Exception in thread "main" java.lang.ArithmeticException: 자바 예외처리  (0) 2019.12.07
반응형

version1

package chap03;
import java.util.Scanner;
import java.util.Random;
public class plus {
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		Random rand = new Random();
		char user='a'; 
		String d = "무승부 ";
		String b = "승리";
		String c = "패배";
		while((user != 'Q')&&(user !='q')) {
			System.out.println("가위는 1, 바위는 2, 보는 3");
			System.out.println("종료를 원하시면 q를 눌러주세요. ");
			System.out.print("숫자를 입력하세요: ");
			user = (s.next()).charAt(0);
			int computer= rand.nextInt(3)+1;
			switch(user){
				case '1' : 
						if(computer==2) {
							System.out.println("컴퓨터는 : "+ computer+ " " + c);
							break;
						}
						else if(computer==3) {
							System.out.println("컴퓨터는 : "+ computer+" " + b);
							break;
						}
						else {
							System.out.println("컴퓨터는 "+ computer+ " " + d);
							break;
						}
				case '2' :
						if(computer==1) {
							System.out.println("컴퓨터는 : "+ computer+" " + b);
							break;
						}
						else if(computer==3) {
							System.out.println("컴퓨터는 : "+ computer+" " + c);
							break;
						}
						else {
							System.out.println("컴퓨터는 "+ computer+ " " + d);
							break;
						}
				case '3' : 
						if(computer==1) {
							System.out.println("컴퓨터는 : "+ computer+ " " + c);
							break;
						}
						else if(computer==2) {
							System.out.println("컴퓨터는 : "+ computer+ " " + b);
							break;
						}
						else {
							System.out.println("컴퓨터는 "+ computer + " " + d);
							break;
						}
				}
		}
	}
}

version2

package test01;
import java.util.Scanner;
public class RpsGame {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		for(int i=0; i < 3; i++) {
			int com = (int)(Math.random() * 10) % 3 + 1;
			int input;
			while(true) {
				System.out.println("입력 [1: 가위 , 2: 바위 3: 보]");
				input = sc.nextInt();
				if(input >= 1 && input <= 3) break;
				System.out.println("가위, 바위, 보 중 하나만 선택해주세요.");
			}
			System.out.println();
			
			if(com == 1) System.out.println("컴퓨터 : 가위");
			else if(com == 2) System.out.println("컴퓨터 : 바위");
			else System.out.println("컴퓨터 : 보");
			
			if(input == 1) System.out.println("사람 : 가위");
			else if(input == 2) System.out.println("사람 : 바위");
			else System.out.println("사람 : 보");
			
			System.out.println("<<결과>>");
			if(com == input) {
				System.out.println("비김");
			} else if (com==1 && input == 2 || com==2 && input==3 || com==3 && input ==1) { 
				System.out.println("사람 win");
			} else {
				System.out.println("컴퓨터 win");
			}
			System.out.println("=============================");
		}
		sc.close();
	}
}
반응형
반응형

※ 별찍기를 쉽게하는 방법 ※

공백이 별을 밀어낸다는 생각으로 구상하면 된다. 별과 공백을 자리를 차지하고 있다는 생각보다는 별이 왼쪽 정렬되어 있을 때 공백이 삼각형을 오른쪽으로 밀어낸다고 생각하면 쉽게 코드를 짤 수 있다.

 

(1) 오른쪽 직각 삼각형 

package chap03;
public class plus {
	public static void main(String[] args) {
		for(int i = 0; i<10; i++) {
			for(int j=10-(i+1); j>=0; j--) {
				System.out.print(" ");
			}
			
			for(int j=0; j < (i+1); j++) {
				System.out.print("*");
			}
			
			System.out.println();
		}
	}
}
/*
          *
         **
        ***
       ****
      *****
     ******
    *******
   ********
  *********
 **********

*/

(2) 숫자를 입력받아 왼쪽 직각 삼각형 출력 

package chap03;
import java.util.Scanner;
public class plus {
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		System.out.print("출력할 행의 개수 : ");
		int temp = s.nextInt();
		for(int i = 1; i<=temp; i++) {
			for(int j=1; j <= i ; j++) {
				System.out.print(j);
			}
			System.out.println();
		}
	}
}
/*
출력할 행의 개수 : 5
1
12
123
1234
12345
*/

(4) 연속한 숫자 삼각형

package chap03;
import java.util.Scanner;
public class plus {
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		System.out.print("출력할 행의 개수 : ");
		int temp = s.nextInt();
		for(int i = 1; i<=temp; i++) {
			for(int j=1; j <= i ; j++) {
				System.out.print(i);
			}
			System.out.println();
		}
	}
}
/*
출력할 행의 개수 : 5
1
22
333
4444
55555
*/

(5) 공백이 포함된 삼각형

package chap03;
import java.util.Scanner;
public class plus {
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		System.out.print("출력할 행의 개수 : ");
		int temp = s.nextInt();
		int k=1;
		for(int i = 1; i <= temp; i++) {
			for(int j = 1; j <= i ; j++) {
				System.out.printf("%-2d",k++);
			}
			System.out.println("");
		}
	}
}
/*
출력할 행의 개수 : 5
1 
2 3 
4 5 6 
7 8 9 10
1112131415
*/

%-2d(왼쪽 정렬)

 

정삼각형 

package chap03;
import java.util.Scanner;
public class plus {
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		System.out.print("출력할 행의 개수 : ");
		int temp = s.nextInt();
		
		for(int i = 1; i <= temp; i++) {
			for(int j = temp; j !=0; j--) {
				System.out.print(" ");
			}
			for(int j = 1; j <= i; j++) {
				System.out.print(i + " ");
			}
			System.out.println("");
			temp --;
		}
	}
}
반응형

'JAVA > 2020 프로그램' 카테고리의 다른 글

[JAVA] 숫자 출현횟수  (0) 2019.12.15
[JAVA] 가위바위보 게임  (0) 2019.12.08
[JAVA] 알파벳 프로그램  (0) 2019.12.07
[JAVA] 소수점 두자리까지 같은 지 확인  (0) 2019.12.07
[JAVA] 윤년계산하기  (0) 2019.12.07
반응형

짝수만 출력 

package chap03;
public class plus {

	public static void main(String[] args) {
		int i, N=20;
		for(i=2; i<=N; i+=2) {
			System.out.println(i);
		}
	}
}

홀수의 합 

1. 작은수 

package chap03;
public class plus {

	public static void main(String[] args) {
		int i, N=10, sum=0;
		for(i=1; i<=N; i++) {
			if(i%2 != 0) {
				sum  = sum + i;
			}
		}
		System.out.println(sum);
	}
}

큰수 

package chap03;
import java.util.Scanner;
public class plus {
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int i, N=100, temp=0;
		System.out.print("숫자를 입력하세요: ");
		temp = s.nextInt();
		if(temp == 0 || temp==1) {
			for(i=temp; i<=N; i+=2) {
				System.out.print(i + " ");
			}
		}else {
			System.out.print("잘못 눌렀군요.");
		}
	}
}

100까지 0을 누르면 짝수, 1를 누르면 홀수가 나옴.

package chap03;
public class plus {

	public static void main(String[] args) {
		int i, N=1000, sum=0;
		for(i=500; i<=N; i++) {
			if(i%2 != 0) {
				sum  = sum + i;
			}
		}
		System.out.println(sum);
	}
}

구구단

package chap03;
import java.util.Scanner;
public class plus {
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		System.out.print("몇단 : ");
		int temp = s.nextInt();
		int i,j;
		for(j=1; j<=9; j++) {
			System.out.println(temp + " x " + j + " = " + temp*j);
		}
		
	}
}

합 계산

package chap03;
import java.util.Scanner;
public class plus {
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		System.out.print("정수를 입력하세요(양수): ");
		int temp = s.nextInt();
		System.out.println("입력한 정수는 " + temp + "입니다.");
		int i, sum=0;
		for(i=1; i<=temp; i++) {
			System.out.print(i + " ");
			sum = sum + i;
		}
		System.out.printf("\n1부터  %d까지의 합은 %d 입니다.", temp, sum);
	}
}

합계와 평균구하기 

package chap03;
import java.util.Scanner;
public class plus {
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int i,n, sum=0;
		System.out.print("숫자를 입력하세요: ");
		for(i=0; i<5; i++) {
			n = s.nextInt();
			sum = sum + n;
		}
		float temp  = sum/5; 
		System.out.printf("합은 %d 평균은 %.11f입니다.", sum, temp);
	}
}

입력된 숫자까지 세제곱

package chap03;
import java.util.Scanner;
public class plus {
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int i,n, sum=0;
		System.out.print("정수를 입력하세요: ");
		n = s.nextInt();
		for(i=1; i<=n; i++) {
			System.out.printf("%d의 세제곱은 %d입니다.\n", i, (i*i*i));
		}
	
	}
}

문자 거꾸로 뒤집기 

package chap03;
import java.util.Scanner;
public class plus {
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		System.out.print("문자열 입력 : ");
		String temp = s.nextLine();
		for(int i = temp.length()-1; i>=0; i--) {
			System.out.print(temp.charAt(i));
		}
		
	}
}

공백을 입력하고 싶으면 nextLine()

 

문장에 대문자, 소문자, 숫자 구별

package chap03;
import java.util.Scanner;
public class plus {
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		System.out.print("문자열 입력 : ");
		String temp = s.nextLine();
		int num1 = 0, num2 =0, num3 = 0;
		for(int i=0; i < temp.length(); i++) {
			char cnt = temp.charAt(i);
			if(cnt>='A' && cnt<= 'Z') {
				num1 ++;
			}
			if(cnt >='a' && cnt <= 'z') {
				num2 ++;
			}
			if(cnt >= '0' && cnt <= '9'){
				num3++;
			}
		}
		System.out.printf("%s : 대문자 %d개, 소문자 %d개, 숫자 %d개", temp, num1, num2, num3);
	}
}

 

반응형

'JAVA > 문법' 카테고리의 다른 글

[JAVA] 클래스  (0) 2019.12.22
[JAVA] 배열 2  (0) 2019.12.15
[JAVA] 배열  (0) 2019.12.15
[JAVA] random(랜덤) 함수  (0) 2019.12.08
[JAVA] Exception in thread "main" java.lang.ArithmeticException: 자바 예외처리  (0) 2019.12.07
반응형

Random 함수를 사용하는 방법을 알아보도록 하겠다.

 

호출 Random 객체 생성하기

import java.util.Random;
Random random = new Random();

정수 Random(int)생성 과 범위지정

int randomInt = random.nextInt();
System.out.println(randomInt)

위에 random.nextInt()안에 특정숫자를 넣으면 0부터 특정숫자-1까지 범위가 정해지고 그 안에서 랜덤 숫자가 나오게 되는 것이다. 

 

예를 들어

Random rand = new Random();
rand.nextInt(10)

이렇게 10이라는 숫자를 넣게 되면 0부터 10-1 즉, 0부터 9까지의 숫자중에 어떤 수를 구하게 되는 것이다.

package chap03;
import java.util.Random;

public class plus {

	public static void main(String[] args) {
		Random rand = new Random();
		int i, N=5;
		for(i=1; i<=N; i++) {
			System.out.printf("%d ", rand.nextInt(10+1));
		}
	}
}

이렇게 for문을 같이 사용하면 랜덤한 숫자 5개를 구할 수 있게 되는 것이다.

반응형

'JAVA > 문법' 카테고리의 다른 글

[JAVA] 클래스  (0) 2019.12.22
[JAVA] 배열 2  (0) 2019.12.15
[JAVA] 배열  (0) 2019.12.15
[JAVA] loop  (0) 2019.12.08
[JAVA] Exception in thread "main" java.lang.ArithmeticException: 자바 예외처리  (0) 2019.12.07
반응형

영어는 1바이트 한글은 2바이트 이기 때문에 한글 한 문자를 치면 "문자가 아닙니다. 한 글자만 입력하세요" 라는 문장이 나오게 된다.

위에 uppercase 는 대문자로 lowercase는 소문자로 바꿔주는 것이고 , At는 한 문자씩 나타내게 해주는 것이고,

조건문 안에 있는 length은 문자의 길이를 나타내는 것이다.

equals ==와 다른데 equals는 문자 자체를 비교하는 것이고, ==는 주소를 비교하는 것이다

 

1. 자음과 모음 판별 프로그램

package chap03;
import java.util.Scanner; // 입력 

public class plus {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		System.out.print("알파벳을 입력하세요: ");
		String input = s.next().toLowerCase();
		boolean uppercase = input.charAt(0) >= 65 && input.charAt(0) <=90;
		//At 는 한글자, uppercase는 대문자 
		boolean lowercase = input.charAt(0) >= 97 && input.charAt(0) <=122;
		// lowercase는 소문자 
		boolean vowels = input.equals("a") || input.equals("e") || input.equals("i") || input.equals("e")||input.equals("o");
		//equals는 문자 그자체를 비교 ==는 주소를 비교 
		if(input.length()>1) { //문자 길이 
			System.out.println("문자가 아닙니다. 한 글자만 입력하세요");
		}
		else if(!(uppercase || lowercase)) {
			System.out.println("알파벳(a~z, A~Z)이 아닙니다.");
		}
		else if(vowels) {
			System.out.println(input +"은(는)모음입니다.");
		}
		else {
			System.out.println(input +"은(는)자음입니다.");
		}
		s.close();
	}
}

2. 알파벳 순서대로 출력하는 프로그램

import java.util.Arrays;
import java.util.Scanner;
public class Hello{
public static void main(String[] args) {
	final int size = 26;
	char[] codes = new char[size]; // 배열선언 
	int a_char = (int) 'a';
	
	for(int i=0; i<size; i++) {
		codes[i] = (char)(a_char + i); 
		}
	
	for(int i=0; i<size; i++) {
		System.out.printf("%c ", codes[i]);
	}
	System.out.println();
	}
}

 

 

반응형

'JAVA > 2020 프로그램' 카테고리의 다른 글

[JAVA] 가위바위보 게임  (0) 2019.12.08
[JAVA] 별찍기  (0) 2019.12.08
[JAVA] 소수점 두자리까지 같은 지 확인  (0) 2019.12.07
[JAVA] 윤년계산하기  (0) 2019.12.07
양수 판단 코드  (0) 2019.12.07
반응형
package chap03;
import java.util.Scanner; // 입력 

public class plus {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		System.out.print("첫번째 실수를 입력하세요: ");
		double num1 = s.nextDouble();
		System.out.print("두번째 실수를 입력하세요: ");
		double num2 = s.nextDouble();
		if(Math.abs(num1 - num2) <= 0.01) { //abs는 절댓값으로 바꿔줌
			System.out.println("두수는 소수점 2자리까지 같습니다.");
		}
		else {
			System.out.println("두수는 다릅니다.");
		}
	}
}
반응형

'JAVA > 2020 프로그램' 카테고리의 다른 글

[JAVA] 가위바위보 게임  (0) 2019.12.08
[JAVA] 별찍기  (0) 2019.12.08
[JAVA] 알파벳 프로그램  (0) 2019.12.07
[JAVA] 윤년계산하기  (0) 2019.12.07
양수 판단 코드  (0) 2019.12.07

+ Recent posts