티스토리 뷰

puts "Simple calculator"
25.times {print "-"}
puts "Enter the first Number"
num_1=gets.chomp
puts "Enter the second Number"
#gets.chomp는 String으로 받아온다.
num_2=gets.chomp
puts "The first number multipled by the second number is #{num_1.to_i * num_2.to_i}"

puts "나누기 : The first number division by the second number is #{num_1.to_i / num_2.to_i}"

puts "더하기 : The first number plus by the second number is #{num_1.to_i + num_2.to_i}"

puts "빼기 : The first number minus by the second number is #{num_1.to_i - num_2.to_i}"

num_3=10
puts "#{num_3.to_f}"

puts "#{num_3.odd?}"

puts "#{num_3.even?}"


'Back-end' 카테고리의 다른 글

[루비] if/elsif/else 문  (0) 2018.12.21
[루비] 메서드 생성  (0) 2018.12.21
[루비] 다양한 문자열 함수  (0) 2018.12.07
[패스트캠퍼스 6번쨰 수업]  (0) 2018.11.10
[Spring Boot] 패캠 5번쨰 수업  (0) 2018.11.03
댓글