Python (main.py):
1 2 3 4 5 6 7 8 9 10 | # -*- coding: utf-8 -*- class codeboxy: b = 2 def power( self , a): ans = a * * self .b #計算次方 return ans boxy = codeboxy() a = 3 print ( "%d ^ %d = %d" % (a, boxy.b, boxy.power(a))) |
說明:
使用Class類別的方式計算整數a的b次方為多少。
沒有留言:
張貼留言