c++ 数组的定义 已经简单的运用
程序员文章站
2022-07-15 08:40:07
...
#include<iostream>
using namespace std;
int main(){
int a[10],b[10];//定义俩个数组 a,b
for ( int i = 0;i < 10; i ++ ){
a[i] = 2 * i - 1;
b[10 - i - 1] = a[i];
}
for ( int i = 0;i < 10 ;i++){
cout << "a[" << i <<"] = "<<a[i]<<" ";
cout << "b[" << i <<"] = "<<b[i]<<" "<<endl;
}
return 0;
}
上一篇: Python格式化输出
下一篇: c++ 动态数组类的创建和简单运用