250x250
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
- react
- 자바스크립트
- SWIFT
- effect
- xcode
- 비전공자
- iPhone
- 비전공 개발자
- jQuery
- 프론트엔드
- 개발자
- HTML
- 백엔드
- php
- html5
- keyframes
- ipad
- 애니메이션
- MAC
- Animation
- hover
- 풀스택
- CSS
- iOS 개발자
- front-end
- image
- button
- javascript
- css3
- IOS
Archives
- Today
- Total
비전공자 개발일기
UP and DOWN Number Game 본문
728x90
SMALL
import Foundation
var comChoice = Int.random(in: 1...100)
var myChoice: Int = 0
print("컴퓨터가 선택한 숫자 맞추기")
while true {
var myInput = readLine()
print("당신의 입력한 숫자: \(myInput!)")
if let input = myInput {
if let num = Int(input) {
myChoice = num
}
}
if(comChoice > myChoice) {
print("UP")
myChoice = 0
} else if (comChoice < myChoice) {
print("DOWN")
myChoice = 0
} else {
print("BINGO")
break
}
}
728x90
LIST
'SWIFT' 카테고리의 다른 글
[SWIFT] Coding Test Practice Day 1 (0) | 2022.11.08 |
---|---|
UP and Down Number Game in iOS APP (0) | 2022.11.05 |
Rock Scissors Paper (0) | 2022.11.04 |
Dice Game + breakpoint Error (0) | 2022.11.04 |
My First iOS Application + useful shortcut keys in Xcode (0) | 2022.11.03 |