728x90
반응형
#include <iostream>
using namespace std;
int main()
{
int yams[3];
yams[0] = 7;
yams[1] = 8;
yams[2] = 6;
int yamcosts[3] = { 200, 300, 50 };
cout << "고구마 합계=";
cout << yams[0] + yams[1] + yams[2] << endl;
cout << yams[1] << "개가 들어 있는 포장은";
cout << "개당" << yamcosts[1] << "원씩 입니다. \n";
int total = yams[0] * yamcosts[0] + yams[1] * yamcosts[1];
total = total + yams[2] * yamcosts[2];
cout << "세 포장의 총 가격은 " << total << "원입니다.";
cout << "\nyams 배열의 크기는" << sizeof yams;
cout << "바이트 입니다. \n";
cout << "원소 하나의 크기는 " << sizeof yams[0];
cout << "바이트입니다. \n";
return 0;
}
728x90
반응형
'Programming > C++ 2' 카테고리의 다른 글
[C++ 실습] 4장-03. String 클래스 (0) | 2021.04.04 |
---|---|
[C++ 실습] 4장-02. 문자열 (0) | 2021.04.04 |
[C++] 4장. 복합 데이터형 - (7) 포인터와 메모리 해제 (0) | 2021.03.31 |
[C++] 4장. 복합 데이터형 - (5) 공용체와 (6) 열거체 (0) | 2021.03.27 |
[C++] 4장. 복합 데이터형 - (4) 구조체 (0) | 2021.03.27 |