//상자의 체적을 구하는 프로그램을 작성하여 보자 체적은 길이 너비 높이로 계산된다.
//상자의 크기는 사용자가 입력한다.상자의 크기는 200x200x200을 넘지 않는다. 사용되는 변수의 크기를 최소로하여 보자
#include<iostream>
using namespace std;
int main()
{
int llong;
int depth;
int height;
cout << "상자의 체적을 입력하시오 (각 크기는 200을 넘지 않도록 하시오)" << endl;
cout << "길이를 입력하시오: ";
cin >> llong;
while (llong > 200)
{
cout << "200이하로 입력하시오" << endl;
cout << "길이를 입력하시오: ";
cin >> llong;
cout << endl;
}
cout << endl;
cout << "너비를 입력하시오: ";
cin >> depth; cout << endl;
while (depth > 200)
{
cout << "200이하로 입력하시오" << endl;
cout << "너비를 입력하시오: ";
cin >> depth;
cout << endl;
}
cout << "높이를 구하시오: ";
cin >> height; cout << endl;
while (height > 200)
{
cout << "200이하로 입력하시오" << endl;
cout << "높이를 입력하시오: ";
cin >> height; cout << endl;
cout << endl; cout << endl;
}
int volume = llong * depth * height;
cout << "상자의 체적은" << volume << "입니다.";
return 0;
}
'프로그래밍 언어 > c++' 카테고리의 다른 글
집의 평수를 제곱 미터로 바꾸는 프로그램(C++ espresso) (0) | 2022.03.28 |
---|---|
다양한 자료형의 이해(LPSTR, LPTSTR, LPCSTR, LPWSTR, LPCTSTR, LPCWSTR) (0) | 2022.03.28 |
윤성우 열혈 c++ 문제 04-2번 and 생성자 추가 버전 4-3 문제 (0) | 2022.01.25 |
윤성우 열현 C++ 프로그래밍 문제 03-2번 (0) | 2022.01.21 |
열혈 c++ 문제 03-1[구조체 내에 함수 정의하기] (0) | 2022.01.13 |