swift 백준 1330, 9498, 14681, 2420, 2753 (조건)
·
Algorithm/Baekjoon
1330 두 수 비교하기readLine() 메서드로 키보드로부터 String을 입력 받습니다.이후 조건에 맞게 코드 작성합니다let line = readLine()!let arr = line.split(separator: " ")let a = Int(arr[0])!let b = Int(arr[1])!if a b { print(">")} else { print("==")} 9498 시험 성적간단하게 조건에 맞게 실행합니다let line = readLine()!let arr = line.split(separator: " ")let a = Int(arr[0])!//let b = Int(arr[1])!if a = 80 { print("B")} else if a >= 70 { print("..