0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Swift学習:数値の計算

Posted at

数値計算

四則演算

1.足し算:+
2.引き算:-
3.掛け算:*
4.割り算:/

記述例

// 四則演算
let plus: Int = 1 + 1
let minus: Int = 1 - 1
let multiply: Int = 1 * 1
let divide: Int = 1 / 1

剰余演算

割り算した際に発生する余りを算出する演算子:%

記述例

// 剰余演算
let surplus: Int = 10 % 3 // 余り1を算出

注意点

計算する時はデータ型が同じでなければいけない

// データ型が異なる定数
let integer: Int = 1
let double: Double = 0.5

let result: Double = inteher + doouble // コンパイルエラーが発生

let result: Double = Double(integer) + double // これは計算できる
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?