일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- dfs
- programmers
- BAEKJOON
- 스택
- JS
- algoritms
- 큐
- MacOS
- 모던자바스크립트
- BFS
- Swift
- Algorithm
- Ai
- 신한투자증권
- SSAFY
- 자바스크립트
- 알고리즘
- 일임형
- 로보어드바이저
- 혁신금융서비스
- 파이썬
- frontend
- IOS
- 자료구조
- JavaScript
- React #Web #프런트엔드
- Python
- 자문형
- 백준
- algorithms
- Today
- Total
목록네이티브 (2)
Step by Step
변수 Objective-C에서는 데이터를 담을 수 있는 변수가 있다.int amount = 10000;printf("The amount in your account is $%i\n", amount); 프로그램을 실행하면 amount 변수의 값이 다음과 같이 저장된다.#include int main(void){ int amount = 100000; printf("The amount in your account is $%i\n", amount); return 0;} 변수 값 표시변수에 저장된 값을 표시할 수 있는 printf() 함수는 매우 유용하다.프로그램을 실행하면 amount 변수의 값이 다음과 같이 저장된다. #include int main(void){ int amount = ..
import UIKit//var greeting = "Hello, playground"//print(greeting)Int8.maxInt8.minInt64.maxInt64.minvar name:String = "전우치"var greeting = "안녕하세요"name = "이순신"greeting += " " + nameprint(greeting) import UIKitlet i:Int = 10//var d:Double = i //Errorlet r:Double = 0.1식별자- 카멜 케이스라는 방식으로 대소문자를 기술하도록 되어있음.–UpperCamelCase : 형식명, 클래스명에 사용한다. Int, Void, AnyObject –lowerCamelCase : 메서드명, 변수명에 사용한다. mes..