오늘도 한 뼘 더
[백준 2525번] if문 - 오븐시계 본문
728x90
반응형
# 문제
https://www.acmicpc.net/problem/2525
# 입력 예제
14 30
20
# 출력 예제
14 50
# 코드
package main
import "fmt"
func main() {
var a, b, c int
fmt.Scanln(&a, &b)
fmt.Scan(&c)
b = b + c
if b >= 60 {
a = a + b/60
b = b % 60
if a > 23 {
a = a - 24
fmt.Print(a, b)
} else {
fmt.Print(a, b)
}
} else {
fmt.Print(a, b)
}
}
728x90
반응형
'Algorithm > 백준 알고리즘' 카테고리의 다른 글
[백준 2739번] for문 - 구구단 (0) | 2022.05.23 |
---|---|
[백준 2480번] if문 - 주사위 세개 (0) | 2022.05.22 |
[백준 2884번] if문 - 알람 시계 (0) | 2022.04.04 |
[백준 14681번] if문 - 사분면 고르기 (0) | 2022.04.04 |
[2753] if문 - 윤년(Golang) (0) | 2022.03.04 |
Comments