c++espresso 1 5장 프로그래밍 솔루션 (c언어) Up

c++espresso 1 5장 프로그래밍 솔루션 (c언어) Up




c++espresso 1 5장 프로그래밍 솔루션 (c언어)

c++espresso 1-5장 프로그래밍


c++espresso 1-5장 프로그래밍1.1
#include
using namespace std;

int main()
{
unsigned short int length, width, height;
cout<<"상자의 길이,넓이,높이를 입력"< cin>>length>>width>>height;
unsigned int result = length*width*height;
cout<<"상자의 체적: "< return 0;
}

1.2
#include
#define P 3.3058
using namespace std;

int main()
{
double m2;
cout<<"평수: ";
cin>>m2;
cout<<"1평당 평방미터는"<
cout< return 0;
}

1.3
#include
#define Feet 12
#define Inch 2.54
using namespace std;

int main()
{
double cm, i;
int p;
cout<<"키를 입력하시오:";
cin>>cm;
p = cm/Inch/Feet;
i = cm/Inch - p*Feet;
cout<<"1피트는"< cout<}

1.4
#include
#define second 60
using namespace std;

int main()
{
int h,m,s;
cout<<"시간을 입력하시오."< cin>>h>>m>>s;



자료출처 : http://www.ALLReport.co.kr/search/Detail.asp?pk=11047917&sid=knp868group1&key=





[문서정보]

문서분량 : 231 Page
파일종류 : HWP 파일
자료제목 : c++espresso 1 5장 프로그래밍 솔루션 (c언어)
파일이름 : c++espresso 1-5장 프로그래밍.hwp
키워드 : c++espresso,1,5장,프로그래밍,c언어,솔루션
자료No(pk) : 11047917

댓글

이 블로그의 인기 게시물

솔루션 올립니다 데이터통신과 네트워킹 5판 DownLoad