글
백준 2884번 알람 시계(JAVA, C#)
자바
import java.util.*;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int a, b;
a = sc.nextInt();
b = sc.nextInt();
if(b >= 45)
{
System.out.println(a + " " + (b-45));
}
else
{
if(a == 0)
{
System.out.println("23 " + (b+15));
}
else
{
System.out.println((a-1) + " " + (b+15));
}
}
}
}
/////////////
C#
using System;
namespace Baekjoon {
class Program {
static void Main() {
string s = Console.ReadLine();
string[] s1 = s.Split();
int a = int.Parse(s1[0]);
int b = int.Parse(s1[1]);
if(b >= 45)
{
Console.WriteLine(a + " " + (b-45));
}
else
{
if(a == 0)
{
Console.WriteLine("23 " + (b+15));
}
else
{
Console.WriteLine((a-1) + " " + (b+15));
}
}
}
}
}
'백준 프로그래밍' 카테고리의 다른 글
백준 2480번 주사위 세 개(JAVA, C#) (0) | 2023.02.14 |
---|---|
백준 2525번 오븐 시계(JAVA, C#) (0) | 2023.02.12 |
백준 14681번 사분면(JAVA, C#) (0) | 2023.02.12 |
백준 2753번 윤년(JAVA, C#) (0) | 2023.02.12 |
백준 9498번 시험 성적(JAVA, C#) (0) | 2023.02.12 |