yanivtamari

calc

Sep 25th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 0.37 KB | None | 0 0
  1. class MyMath{
  2.     var x:Int=7
  3.     var y:Int=12
  4.    
  5.     var calc1:Int{
  6.         return x*y
  7.     }
  8.     var calc2:Int{
  9.         return 2*(x*y)
  10.     }
  11.     var calc3:Double{
  12.         return 2*3.14*Double(x)
  13.     }
  14. }
  15. var myMath:MyMath=MyMath()
  16. print("שטח מלבן: \(myMath.calc1)")
  17. print("היקף מלבן: \(myMath.calc2)")
  18. print("היקף מעגל: \(myMath.calc3)")
Add Comment
Please, Sign In to add comment