https://www.acmicpc.net/step/4
번호별로 함수식 구현해두었습니다.
정답제출시에 클래스안에 함수이름을
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단계도 쉽습니다.
설명이 필요없으므로 생략하겠습니다.
'Algorithm > 백준 단계별 문제' 카테고리의 다른 글
[백준] 6. Funtion 함수 - Java 코드 (0) | 2020.01.27 |
---|---|
[백준] 5. Array 배열 - Java 코드 (0) | 2020.01.27 |
[백준] 4. while문 - Java 코드 (0) | 2020.01.27 |
[백준] 3. for문 - Java 코드 (0) | 2020.01.27 |
[백준] 1.입출력과 사칙연산 - Java 코드 (0) | 2020.01.27 |