C++中的全局变量和局部变量之数组
作者:野牛程序员:2023-05-04 11:17:12C++程序设计阅读 2362
#include<iostream> using namespace std; int b[1000]; //元素会初始化为0 int main() { int n,s=0,i,j,t=0; int c[1000]= {};//元素会初始化为0 int a[1000];//元素初始化为随机值 for(i=0; i<=99; i++) { cout <<a[i]<<" "; } cout<<endl; for(i=0; i<=99; i++) { cout <<c[i]<<" "; } cout<<endl; for(i=0; i<=99; i++) { cout <<b[i]<<" "; } }
野牛程序员教少儿编程与信息学奥赛-微信|电话:15892516892
- 上一篇:为何vc++下不能用cout << fixed
- 下一篇:冒泡排序算法伪代码流程图