백준 25222 [Dart] for, while 반복문 (with 백준 2446, 2522) Dart의 for 반복문 사용표준 loop 방법반복 카운터 동안 loop 실행void main() { String message = 'Dart is fun'; String chgUpper = ""; //반복카운터(문자열 길이)만큼 For 문 돌면서 대문자 변환 for (var i = 0; i Iterable 유형 반복 시 사용 방법List 또는 Set과 같은 Iterable 유형을 반복할 때 현재 반복 카운터를 알 필요가 없다. 이 경우 더 깔끔한 코드를 위해 for-in 루프를 사용한다.void main() { //List 또는 Set과 같은 Iterable 유형 반복 시 반복 카운터 없이 사용 //이 경우 더 깔끔한 코드로 for-in 루프를 사용한다. List candidates .. 2024. 7. 18. 파이썬 for while 조건문 (with 백준 2446, 2522) 파이썬 for , while 조건문은 아래와 같이 사용한다.for (조건문) :조건문 사용 예시#숫자인 경우N = 5for i in N: #문자열일때 사용 print(i) # TypeError: 'int' object is not iterablefor i in range(N): print(i, end=" ") # 0 1 2 3 4for i in range(0, N): print(i, end=" ") # 0 1 2 3 4#문자인 경우M = '일이삼사오'for i in M: print(i, end=" ") # 일 이 삼 사 오for i in range(M): #숫자일때 사용 print(i, end=" ") # TypeError: 'str' object cannot be interp.. 2024. 5. 23. 이전 1 다음