Newer
Older
Ruby / hoge.rb
@c120027 c120027 on 25 Sep 2021 170 bytes 2021-09-25 15:59:35
#!/usr/bin/ruby
# coding: utf-8

x=gets.chomp.to_i
if x.integer? && 0 <= x && x < 10 then
  print "りんごパイの角度: "
  puts 360 / x
else
  puts "エラー"
end