c++复合数据类型

文章目录

  • 复合数据类型
    • 数组

复合数据类型

数组

数据类型 数组名[元素个数]

#include

using namespace std;

int main()
{
    const int n = 3;
    // 元素个数必须为常量
    double ls[n];

    //初始化
    int ls1[2] = {1, 2};
    float ls2[] = {1.2, 3.1, 5.2, 6.6};
    short ls3[5] = {3, 6, 9}; // 其他值为0
    // 不能超,不能用数组给数组赋值
}

你可能感兴趣的:(C++学习记录,c++,开发语言)