访问数组元素
数组元素可以通过数组名称加索引进行访问。元素的索引是放在方括号内,跟在数组名称的后边。例如:
double salary = balance[9];
上面的语句将把数组中第 10 个元素的值赋给 salary 变量。下面的实例使用了上述的三个概念,即,声明数组、数组赋值、访问数组:
实例
#include<iostream>usingnamespacestd; #include<iomanip>usingstd::setw; intmain(){ intn[10]; // n 是一个包含 10 个整数的数组 // 初始化数组元素 for(inti = 0; i < 10; i++ ) { n[i] = i + 100; // 设置元素 i 为 i + 100 } cout << "Element" << setw(13) << "Value" << endl; // 输出数组中每个元素的值 for(intj = 0; j < 10; j++ ) { cout << setw(7)<< j << setw(13) << n[j] << endl; } return0;}
上面的程序使用了 setw() 函数 来格式化输出。当上面的代码被编译和执行时,它会产生下列结果:
Element Value
0 100
1 101
2 102
3 103
4 104
5 105
6 106
7 107
8 108
9 109