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

资源简介

C++实战源码-将结构作为参数传递并返回(入门级实例082).zip

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “iostream.h“

struct Date //日期结构
{
int monthdayyear;//年月日
};

Date GetDate(); //获取日期
void PrintDate(Date); //输出日期

int main(int argc char* argv[])
{
Date dt = GetDate();
PrintDate(dt);
return 0;
}

Date GetDate()
{
Date dt = {5192010};//定义日期2010-5-19
return dt;
}

void PrintDate(Date dt)
{
//输出日期
cout << “日期:“ << dt.year << “-“
<< dt.month << “-“ 
<< dt.day << “\n“;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         552  2010-07-02 13:18  paramter\paramter.cpp
     文件        4560  2010-07-02 13:11  paramter\paramter.dsp
     文件         541  2010-07-02 13:11  paramter\paramter.dsw
     文件         295  2010-07-02 13:11  paramter\StdAfx.cpp
     文件         769  2010-07-02 13:11  paramter\StdAfx.h

评论

共有 条评论