[코드트리 챌린지] 2주차

CodeKong의 기술 블로그·2023년 9월 18일
1

코드트리 챌린지

목록 보기
2/3
post-thumbnail

실력진단 2주차

이번주 문제

https://inha.codetree.ai/missions/4/problems/take-three-integers-and-output/description

오늘은 두 줄 입력 받기를 공부했습니다!

python에서 입력은 한 줄 단위로만 받을 수 있습니다.

따라서 2개의 줄에 걸쳐 입력을 받기 위해서는, 다음과 같이 input() 함수를 2번 사용하면 됩니다.

a = input()
b = input()
print(f'A is {a}, B is {b}')

정수 a, b, c를 입력받고, a와 b와 c를 차례대로 출력하는 프로그램을 작성하세요.

a,b =map(int,input().split())
c =int(input())

print(f"{a} {b} {c}")

해결완료!

0개의 댓글