Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- Swift
- Playground
- allege
- Generalizing a Funcetion
- feel torn
- SwiftUI
- Playgrounds
- 인앱 결제
- 구글이 좋아하는 강한 SEO 작성 방법
- Polite
- progamming
- 코딩
- BASIC
- 컴터 연결
- 해당 비즈니스 및 사이트명을 포함할 수 있도록 페이지 텍스트를 편집하세요 - wix.com
- 맥
- Connect and Solve
- crank up and down
- Learning
- 코린이
- coding
- obliged
- Grammarly
- Uniting Worlds
- 2대 연결
- 렛츠톡 첫 화면
- Making Your Own Portals
- 기초
- 신세지다
- collect the total
Archives
- Today
- Total
목록BASIC (3)
IT

Yes, I can use the condition after the while statement. Quest 1 while !isBlocked { moveForward() if isOnOpenSwitch { moveForward() } else if isonClosedSwitch { toggleSwitch () } } while 스테이트먼트 쓸때 첫 조건은 그냥 앞으로 나아가라고 해도 된다. 이 점을 생각해내기가 어려웠음. Quest 2 func turnAndCollectGem() { moveForward() turnLeft() moveForward() collectGem() turnRight() } while !isBlocked { turnAndColllectGem () } tip. In coding..
카테고리 없음
2022. 4. 29. 12:54

1. 부정을 이런식으로 표현합니다. ! 를 문장 앞에 써 준다는 게 함정. 2. func 은 문장 맨 밑에서 정의해 주거나 앞에서 정의해 주거나 상관없음. 3. AND = &&. ; NOT = ! ; OR = ||
Learn to Code
2022. 4. 28. 18:37