정보처리기사 2021년 1회 79번: Difference between revisions

From IT위키
(Imported from text file)
 
(No difference)

Latest revision as of 01:00, 22 October 2022

분류:기출문제분류:정보처리기사 과목: 프로그래밍 언어 활용

문제[edit | edit source]

79. 다음은 파이썬으로 만들어진 반복문 코드이다. 이 코드의 결과는?

>> while(True) :
print('A')
print(’B‘)
print(’C‘)
continue
print(’D‘)

  • ① A, B, C 출력이 반복된다.
  • ② A, B, C
  • ③ A, B, C, D 출력이 반복된다.
  • ④ A, B, C, D 까지만 출력된다.

풀어보기[edit | edit source]

정답[edit | edit source]

  • 1번

해설[edit | edit source]

같이 보기[edit | edit source]