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.右辺が左辺以下:>=
5.右辺が左辺よりも大きい:<
6.右辺が左辺以上:<=

記述例

// 演算子(オペレーター)
let equal: Bool = 100 == 100
let notEqual: Bool = 100 != 100
let lessThan: Bool = 100 > 100
let lessThanOrEqual: Bool = 100 >= 100
let graterThan: Bool = 100 < 100
let greaterThanOrEqual: Bool = 100 <= 100
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?