본문 바로가기
Algorithm/백준 단계별 문제

[백준] 2. if문 - Java 코드

https://www.acmicpc.net/step/4

 

if문 단계

세 정수 중에 두 번째로 큰 정수를 찾는 문제

www.acmicpc.net

 

번호별로 함수식 구현해두었습니다.

정답제출시에 클래스안에 함수이름을

main(String[] args)

로 변경해서 제출하시면 됩니다..

 

package 기초문법;

import java.util.*;

public class _02if {

	public _02if() {
		
	}
	
	public static void ex1330() {
		Scanner sc = new Scanner(System.in);
		int a,b;
		a = sc.nextInt();
		b = sc.nextInt();
		if(a>b)
		    System.out.print(">");
		else if(a<b)
		    System.out.print("<");
		else
		    System.out.print("==");
		}  
	
    public static void ex2753() {
		Scanner sc = new Scanner(System.in);
        int a;
        a = sc.nextInt();
        if(a%4==0) {
        	if(a%100!=0 || a%400==0)
        		System.out.print("1");
        	else
            	System.out.print("0");
        }
        else	
        	System.out.print("0");
    
    }
    public static void ex2448() {
		Scanner sc = new Scanner(System.in);
        int a,b;
        a = sc.nextInt();
        b = sc.nextInt();
        b = b-45;
        if (b<0) {
        	b+=60;
        	a-=1;
        	if (a<0)
        		a+=24;
        }
        System.out.printf("%d %d",a,b);
    
    }
	
    public static void ex10817() {
		Scanner sc = new Scanner(System.in);
        int[] num = new int[3];
        for(int i=0;i<3;i++) {
        	num[i]=sc.nextInt();
        }
        int max=0,tmp=0;
        for(int i=0; i<3; i++) {
        	if(num[i]>max)
        		max=num[i];
        }
        for(int i=0; i<3; i++) {
        	if(num[i]<max && tmp<num[i])
        		tmp=num[i];
        }
        
        System.out.printf("%d",tmp);
    
    }
    
    
	
}

02단계도 쉽습니다.

설명이 필요없으므로 생략하겠습니다.