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
- If I remember correctly
- something about
- I'll see what I can do
- be under sterss
- 오클랜드 생활비
- be stressed
- for the most part
- remind someone of
- remind someone of someone
- so much
- as .. as
- what's the point of -ing
- could've pp
- I do wish
- has to be
- would've pp
- Just because doesn't mean
- best we can do
- All I'm saying is
- while there
- has got to be
- but I can't make any promsies
- should've pp
- get stressed
- a lot to ask
- I'd prefer it if
- while at it
- As I recall
- That's what you get
- liveacademy
Archives
- Today
- Total
목록컴공 복습 (1)
Higher
c# 복습
진수 0b : 2진수 ex) 0b1111_0000 = 240 0x : 16진수ex) 0xF0 = 240 int a = int.MaxValue 시 a= 2147483647 a+=1 시 a= -2147483648 2진수 0111111111 a 1000000000 a+1 1000000001 -a값 decimal 형식 – 부동소수점보다 느리지만 정확. 변환타입 int a = 123; b = a.ToString(); a = "123" b = Convert.ToInt32(a) a = "1 . 23" b = float.Parse(a) string format Console.WriteLline({0, 5} x {1, -5} = {2, 10}, i, j, i*j) _____7 x 1_____=____________7 이..
컴공 복습
2020. 7. 19. 20:23