코딩을 한단계씩 부셔보자.

코딩을 한단계씩 부셔보자.

  • 분류 전체보기 (319)
    • 코딩배움일지 (157)
      • JAVA (79)
      • DataBase (29)
      • Web 구현 (34)
      • 인터페이스 구현 (15)
    • 개인적인 공부 (142)
      • 자바 (6)
      • 백준 (47)
      • Java의 정석 (0)
      • 그냥정리 (2)
      • Database 복습 (5)
      • 테스트 페이지 (1)
      • 프론트엔드 (7)
      • Unity (29)
      • Python (45)
    • TeamProjectHappy (12)
      • front (9)
      • database (3)
    • 개발일지 (2)
      • Journey to West (2)
  • 홈
  • 배움기록
  • 태그
  • 방명록
RSS 피드
로그인
로그아웃 글쓰기 관리

코딩을 한단계씩 부셔보자.

컨텐츠 검색

태그

java기초 c# javabasic 자바 왕초보 java database 2D html 배열 파이썬 백준 javascript unity SQL 자바기초 CSS Web Python 유니티

최근글

댓글

공지사항

아카이브

전체 글(319)

  • day 6-2 python (반복문)

    def move_it(): move() turn_left() move_it() move() def turn_right(): turn_left() turn_left() turn_left() turn_right() def move_around(): move() turn_right() move_around() for locate in range(5): move_it() move_it() move_around() move_around() move() 만들어진 기능인 move() 와 turn_left() 를 def 함수를 써서 기능을 만든 다음 for 반복문을 5번 반복하고 마지막 move()를 사용하여 위치시키게 함. 더 짧게 하기 def turn_right(): turn_left() turn_left() tu..

    2023.03.01
  • day 6-1 python 함수 (Functions)

    print() ## ()가 들어가는 것은 함수이다. num_char = len("Hello") ## len() 함수 ## def my_function(): ## 내가 설정한 함수 def blabla() print("Hello") print("Bye") my_function()

    2023.02.28
  • day 5-6 python (Fizz Buzz)

    규칙 369 랑 비슷한 게임인것 같다. 3으로 나누어 떨어지는 경우에는 Fizz 5로 나누어 떨어질 경우에는 Buzz 둘다 해당하면 Fizz Buzz 숫자의 범위는 1부터 100까지 Instructions You are going to write a program that automatically prints the solution to the FizzBuzz game. Your program should print each number from 1 to 100 in turn. When the number is divisible by 3 then instead of printing the number it should print "Fizz". When the number is divisible by 5,..

    2023.02.27
  • day 5-5 python (짝수 더하기)

    Instructions You are going to write a program that calculates the sum of all the even numbers from 1 to 100. Thus, the first even number would be 2 and the last one is 100: i.e. 2 + 4 + 6 + 8 +10 ... + 98 + 100 Important, there should only be 1 print statement in your console output. It should just print the final total and not every step of the calculation. 2 부터 100까지 짝수만 더하기 나의 코드 ## 짝수 더하기 to..

    2023.02.27
  • day 5-4 for 반복문 과 range()

    반복문 안에서 range() 함수 ## range # For Loop with Range for number in range(1,10): ## 이러면 9 까지 print(number) for number in range(1,11): ## 이러면 10 까지 print(number) total = 0 for number in range(1,101): total += number print(total)

    2023.02.27
  • day 5-3 python 높은점수 구하기

    리스트 내부에서 높은 점수를 찾아 출력하기 단 max() 함수를 쓰지 않고 출력할 것 Instructions You are going to write a program that calculates the highest score from a List of scores. e.g. student_scores = [78, 65, 89, 86, 55, 91, 64, 89] Important you are not allowed to use the max or min functions. The output words must match the example. i.e The highest score in the class is: x Example Input 78 65 89 86 55 91 64 89 In this c..

    2023.02.27
이전
1 ··· 3 4 5 6 7 8 9 ··· 54
다음
티스토리
© 2018 TISTORY. All rights reserved.

티스토리툴바