반응형

[쉽게 배우는 자바 프로그래밍] 

Chapter 02. 자바 프로그램 구조와 기본 문법 익히기

프로그래밍 문제 


4. 초(Second)를 입력하면 시간, 분, 초로 환산해 출력하는 프로그램을 작성하시오.


1
2
3
4
5
6
7
8
9
10
11
12
public static void main(String[] args) {
        // TODO Auto-generated method stub
        
        int second = 0;
 
        Scanner input = new Scanner(System.in);
 
        System.out.print("초 단위 정수를 입력하세요 : ");
        second = input.nextInt();
 
        System.out.println(second / 3600 + " 시간 " + second % 3600 / 60 + " 분 " + second % 3600 % 60 + " 초 ");
    }



반응형