1. 과제에 관한 이야기코드 작성과 계획의 중요성inlcude int main(){ int nRectangleWidth{}; int nRectangleHeight{}; int nRectangleArea{}; nRectangleWidth = 10; nRectangleHeight = 3; nRectangleArea = nRectangleWidth * nRectangleHeight; cout 위의 코드는 직사각형의 넓이를 계산하는 간단한 예제입니다. 우리가 일반적으로 직사각형의 넓이를 계산할 때는 "밑변 * 높이"를 사용합니다.위 코드에서 nRectangleArea = nRectangleWidth * nRectangleHeight와 같이 작성한 경우..