Skip to content

Instantly share code, notes, and snippets.

@leehs99
Last active August 8, 2018 03:34
Show Gist options
  • Save leehs99/c427adbc38bddc5f10e834664355030a to your computer and use it in GitHub Desktop.
Save leehs99/c427adbc38bddc5f10e834664355030a to your computer and use it in GitHub Desktop.
import java.util.Scanner;
//Object : 지능형 기차
//question : 최근에 개발된 지능형 기차가 1번역(출발역)부터 4번역(종착역)까지 4개의 정차역이 있는 노선에서 운행되고 있다.
이 기차에는 타거나 내리는 사람 수를 자동으로 인식할 수 있는 장치가 있다. 이 장치를 이용하여 출발역에서 종착역까지 가는 도중 기차 안에
사람이 가장 많을 때의 사람 수를 계산하려고 한다.
단, 이 기차를 이용하는 사람들은 질서 의식이 투철하여, 역에서 기차에 탈 때, 내릴 사람이 모두 내린 후에 기차에 탄다고 가정한다.
//Email : 99leehs@naver.com
public class Main2455 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n=0;
int max = 0;
int on= 0;
int off=0;
for (int i = 0; i < 4; i++) {
off = sc.nextInt();
on = sc.nextInt();
n = n-off;
n = n+on;
max= max>n?max:n;
}
System.out.println(max);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment