• 大小: 2.70KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 标签:

资源简介

C++实战源码-遍历数组(入门级实例116).zip

资源截图

代码片段和文件信息

// array.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
#include “iostream.h“
int main()
{
int i;
float a[6];
//遍历从键盘为数组元素赋值
for(i=0;i<6;i++)
{
cout<<“a[“< cin >>a[i];
}
//遍历输出数组
for(i=0;i<6;i++)
{
cout< //控制每行输出元素个数
if(i%3==2)
{
cout<<“\n“;
}
}
return 0;
}



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         403  2010-07-03 11:13  array\array.cpp
     文件        4524  2010-07-03 11:06  array\array.dsp
     文件         535  2010-07-03 11:06  array\array.dsw
     文件         292  2010-07-03 11:06  array\StdAfx.cpp
     文件         769  2010-07-03 11:06  array\StdAfx.h

评论

共有 条评论