본문 바로가기

Machineboy空

검색하기
Machineboy空
프로필사진 안녕도라

  • 분류 전체보기 (367)
    • Game (46)
      • Unity (22)
      • Art (2)
      • 게임 수학 (17)
      • 개발 일지 (4)
    • 언어 (65)
      • iOS (31)
      • C# (31)
    • Computer (235)
      • Coding Test (114)
      • 개념 (16)
      • 알고리즘 (24)
      • CS (51)
      • 자료구조 (24)
    • #endregion (4)
      • 기타 (4)
      • 日本 (0)
    • 오래된 농담 (0)
      • 2025年4月 (0)
Guestbook
Notice
Recent Posts
Recent Comments
Link
«   2025/02   »
일 월 화 수 목 금 토
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
Tags
more
Archives
Today
Total
관리 메뉴
  • 글쓰기
  • 방명록
  • RSS
  • 관리

목록2025/02/05 (1)

Machineboy空

Excercism - Secret Handshake 2진수 변환, 비트연산자(&,>>)

문제요약1~ 31까지의 10진수를 입력하면, 2진수로 바꾼 뒤 숫자에 맞는 동작을 수행하라.https://exercism.org/tracks/csharp/exercises/secret-handshake Secret Handshake in C# on ExercismCan you solve Secret Handshake in C#? Improve your C# skills with support from our world-class team of mentors.exercism.org난이도Easy풀이 포인트2진수 변환// 내가 구현한 2진법 변환string binary = "";int num;while(num > 0){ binary = (num % 2) + binary; num /= 2;}// ..

Computer/Coding Test 2025. 2. 5. 13:02
이전 Prev 1 Next 다음

Blog is powered by kakao / Designed by Tistory

티스토리툴바