c언어 바꾸기1 [C언어] 두 개의 변수를 선언하여 숫자를 바꾸어 출력하는 프로그램을작성하시오. 공부하시는대에 도움이 됐으면 좋겠습니다. 답안코드 확인해주세요! 변수 입력 input1 = 10, input2 = 20 이라고 가정 출력 20 10 더보기 #include int main() { int input1 = 10; int input2 = 20; int temp; temp = input1; input1 = input2; input2 = temp; printf("%d %d",input1,input2); } 더 많은 C코드가 보고 싶다면? https://chuinggun.tistory.com/category/C%EC%96%B8%EC%96%B4 2023. 1. 4. 이전 1 다음