ruby
1class Point 2 attr_accessor :x,:y 3 4 def initialize(x=0,y=0) 5 @x,@y=x,y 6 end 7 8 def inspect 9 "(#{x},#{y})" 10 end 11 12 def +(other) 13 self.class.new(x+other.x,y+other.y) 14 end 15 16 def -(other) 17 self.class.new(x-other.x,y-other.y) 18 end 19 20 point0 = Point.new(3,6) 21 point1 = Point.new(1,8) 22 23 p point0 24 p point1 25 p point0 + point1 26 p point0 - point1
syntax error, unexpected end-of-input, expecting keyword_end
p point1
^
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/20 07:02