4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Swift 累乗計算する場合

Last updated at Posted at 2020-01-29

今日複利計算のアプリを作った時に使ったのでまとめておきます。

#コード

累乗を使うときはこちらを利用します

        pow(Double,Double)

という形になります。

#使い方

powはDouble型なのでこの中に数字かdouble型の変数を入れます。
例えばこんな感じです

スクリーンショット 2020-01-29 20.45.57.png

結果も累乗の計算の結果になっていますね。

変数で入れるとこんな感じです。
スクリーンショット 2020-01-29 21.01.39.png

今回は全部Double型のもので計算できましたが
Int型のものを使ったりする場合はこんな感じです。
スクリーンショット 2020-01-29 21.05.33.png

計算結果も同じになっていますね。

今回は以上になります。ありがとうございました。

4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?