728x90

while 4

23.02.08(수): 반복문 (while, do-while, for) + 다중 for문

오늘 배운 것 01. while 02. do-while 03. for - 다중 for문 01. while 실습 052 정수 2개를 입력받고, 작은 수부터 큰 수까지 누적합을 구하고 출력. 2/8 내 코드 더보기 // 2/8 내 코드 BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); System.out.print("첫 번째 정수 입력: "); int a = Integer.parseInt(br.readLine()); int oa = a; // 출력문에 쓸 a의 원본 값 System.out.print("두 번째 정수 입력: "); int b = Integer.parseInt(br.readLine()); int ob = b; //..

[leetCode]1688. Count of Matches in Tournament (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/count-of-matches-in-tournament/ Count of Matches in Tournament - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 팀 수를 나타내는 정수 n이 주어진다. 토너먼트 형식으로 1개의 팀이 남을 때 까지 경기를 진행했을 때, 진행된 경기 횟수의 총합을 반환하는 문제. 주어진 팀이 홀수인경우 1개의 팀은 부전승으로 다음 라운드에 참여한다...

[leetCode] 1342. Number of Steps to Reduce a Number to Zero (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/number-of-steps-to-reduce-a-number-to-zero/ Number of Steps to Reduce a Number to Zero - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 정수 num 이 주어진다. 짝수라면 2로 나누고 홀수라면 1를 뺀다. 이를 0이 될 때까지 반복한 횟수를 출력하는 문제. class Solution: def numberOfSt..

[부스트코스] 모두를 위한 파이썬 (PY4E) 3주 차_정리 (4/8)

▼ 강의 보러 가기 ▼ www.boostcourse.org/cs122 3주차 학습 범위는 5단원! [ 이번 주는 무엇을 배웠나요? PY4E 요약 정리! ] 5. 루프와 반복문 1) while 루프 while과 콜론 사이에 오는 조건문이 True면 :(콜론)이하의 코드를 반복. 편리한 문법이지만 무한루프에 빠질 수 있는 단점이 있으니 남용하면 안 됨. 2) while문 루프 제어 - break 루프를 종료하고 빠져나온다. (while 문 내의 남은 코드는 실행하지 않는다.) print("과일 이름 맞추기 게임~!") while True: text = input('과일 이름을 입력하세요!:') if text == '무화과': break print(text+"가 아닙니다!") print(text+'! 정답입니..

728x90