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

资源简介

C++实战源码-多维数组的指针参数(入门级实例097).zip

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “iostream.h“
//函数原型
void DisplayDate(int *date);
//日期数组
static int Dates[][7] = 
{
{0000123}
{45678910}
{11121314151617}
{18192021222324}
{25262728293031}
};

int main(int argc char* argv[])
{
DisplayDate((int *)Dates);
return 0;
}

void DisplayDate(int *date)
{
//循环周
for (int week = 0;week < 5;week++)
{ //循环天
for (int day = 0;day < 7;day++)
{
if (*(date+day) != 0)//日期值
cout << “第“ << week+1 <<“周“ 
<< “ 星期“ << day << “ 日期:“ << *(date+day) << “号“ << ‘\n‘;
}
date +=7;
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         705  2010-07-19 10:51  PointPara\PointPara.cpp
     文件        4572  2010-07-19 10:15  PointPara\PointPara.dsp
     文件         543  2010-07-19 10:15  PointPara\PointPara.dsw
     文件         296  2010-07-19 10:15  PointPara\StdAfx.cpp
     文件         769  2010-07-19 10:15  PointPara\StdAfx.h

评论

共有 条评论