Ruby Examples
This commit is contained in:
12
level2/15.rb
Executable file
12
level2/15.rb
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/ruby
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
=begin
|
||||
원의 반지름을 받아 넓이를 계산하는 메서드
|
||||
=end
|
||||
|
||||
def area(r)
|
||||
Math::PI * r ** 2
|
||||
end
|
||||
|
||||
puts "Area = #{area(2)}"
|
||||
Reference in New Issue
Block a user