반응형
https://www.acmicpc.net/problem/10952 A+B - 5
문제 요약
간단한 A+B 문제
문제 풀이
def Q_10952()
while true
value = gets.chomp.split(" ")
num1 = value[0].to_i
num2 = value[1].to_i
if num1 == 0 and num2 == 0
break
end
puts num1 + num2
end
end
Q_10952()
https://www.acmicpc.net/problem/10951 A+B - 4
문제 요약
간단한 A+B 문제
문제 풀이
def Q_10951()
while true
begin
value = gets.chomp.split(" ")
puts value[0].to_i + value[1].to_i
rescue
break;
end
end
end
Q_10951()
'Ruby > 알고리즘' 카테고리의 다른 글
ruby_백준_1110 더하기 사이클 (0) | 2022.10.17 |
---|---|
ruby_백준_10871 x 보다 작은 수 (0) | 2022.10.15 |
ruby_백준_2438, 2439 별 찍기 (1) | 2022.10.14 |
ruby_백준_15552,11021,11022 A+B (0) | 2022.10.13 |
ruby_백준_25304번 영수증 (0) | 2022.10.12 |