✨✨어렵다 ㅠㅠ
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
어렵다 ㅠㅠ ✨✨
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(숫자)
- 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