JAVA_15_사용자 정의 함수

charl hi·2021년 8월 8일
0

JAVA

목록 보기
15/53

사용자 정의 함수

  • 정의 : 정해진 특정한 기능을 수행하는 모듈
  • 이를 적절히 사용하여 문제를 분해해 잘게 분해할 수 있다.

3개의 수의 최대공약수 구하기

✨✨어렵다 ㅠㅠ



public class Main {

	// 반환형, 함수명(매개변수1, 2,,..)
	public static int Maxgong(int a, int b, int c)
	{
		int min;
		if (a>b)
		{
			if (b>c)
			{
				min =  c;
			}
			else
			{
				min =  b;
			}
		}
		else
		{
			if (a>c)
			{
				min = c;
			}
			else
			{
				min = a;
			}
		}
		for(int i = min; i > 0; i--)  // 요부분이 잘 안떠올림!!**
		{
			if(a % i == 0 && b % i == 0 && c % i == 0)
			{
				return i;
			}
		}
		return -1;
	}
	
	public static void main(String[] args) {
		// 3개의 최대공약수 구하기
		// 다수를 입력받을 경우 배열을 배워야 하기에 그냥 예시로 여기에다 쓴다.
		
		System.out.println("400, 300, 750 의 최대공약수는? : " + Maxgong(400, 300, 750));
		
	}

}

400, 300, 750 의 최대공약수는? : 50

약수 중 k번째로 작은 수 찾기

어렵다 ㅠㅠ ✨✨



public class Main {
	
	public static int function(int number, int k) {
		for(int i = 1; i <= number; i++)
		{
			if(number % i == 0)
			{
				k--;
				if(k == 0)
				{
					return i;
				}
			}
		}
		return -1;		
	}
	
	public static void main(String[] args) {
		// 약수 중 k번째로 작은 수 찾기
		int result = function(96, 11);
		if(result == -1)
		{
			System.out.println("96의 11번째 약수는 없습니다.");
		}
		else
		{
			System.out.println("96의 11번째 약수는 : " + result + "입니다.");
		}

	}

}

96의 11번째 약수는 : 48입니다.

문자열에서 마지막 글자를 반환하기


.charAt(숫자)

  • 참조변수함수이름.charAt(숫자)
  • String으로 저장된 문자열 중에서 한 글자만 선택해 char타입으로 변환함.
  • returns the character at the specified index in a string.


public class Main {

	public static char function(String s) {
		return s.charAt(s.length() - 1);  // 문자열에서 마지막 단어 선택
	}
	
	public static void main(String[] args) {
		
		
		String S1 = "Hello World";
				
		System.out.println("Hello Wrold의 마지막 글자는 " + function(S1) + " 입니다.");

	}

}

Hello Wrold의 마지막 글자는 d 입니다.

입력 방식으로


import java.util.Scanner;

public class Main {

	public static char function(String s) {
		return s.charAt(s.length() - 1);
	}
	
	public static void main(String[] args) {
		// 문자열에서 마지막 단어 반환하기
		
		Scanner input = new Scanner(System.in);
		System.out.println("문장을 입력하세요.");
		
		String S1 = input.nextLine();
				
		System.out.println("위 문장의 마지막 글자는 " + function(S1) + " 입니다.");
		
		input.close();
	}

}


함수를 여럿 이용하여 세 수 중 최대값 구하기



public class Main {

	public static int max(int a, int b) {
		return (a > b)? a : b;
	}
	
	public static int Max(int a, int b, int c) {
		int result = max(a, b);     // 여길 주의하자!!
		return (result > c)? result : c;
		
		// 이렇게 할 수도 있다. 
		// result = max(result, c);
		// return = result;
		
	}
	
	public static void main(String[] args) {
		
		System.out.println("124, 5523, 343 중의 가장 큰 값은? " + Max(124, 5523, 343));
	}

}

124, 5523, 343 중의 가장 큰 값은? 5523


Ref

0개의 댓글

관련 채용 정보