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

倫理演算

真か偽を判定するプログラム(当たりとハズレみたいなもの)

記述例

// 論理積(かつ)
// 全ての論理式がtrueだと全体でtrueになる
// 1つでもfalseがあると全体もfalseになる

let thisIsTrue: Bool = true && true // これはtrueになる
let thisIsFalse: Bool = true && false // これはfalseになる

// 論理和(または)
// 全ての論理式の中で1つでもtrueで全体でtrueになる

let thisIsTrue: Bool = true || false // これはtrueになる
let thisIsFalse: Bool = false || false // これは当然falseになる

// 否定
// 真と偽を逆にする

let isMyAccount: Bool = treu
let isNotMyAccount: Bool = !isMyAccount // isMyAccountはfalseになる
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?