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

资源简介

C++实战源码-实现输入月份号输出该月份英文名(入门级实例112).zip

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “stdio.h“
int main()
{
 char *Month[]={ //定义字符串数组
   “January“
  “February“
  “March“
  “April“
  “May“
  “June“
  “July“
  “August“
  “September“
  “October“
  “November“
  “December“
  };
  int i;
  char **p; //声明指向指针的指针变量
  p=Month; //将数组首地址值赋给指针变量
  printf(“请输入一个月份\n“);
  scanf(“%d“&i); //输入要显示的月份号
  printf(“当前月是:“);
  printf(“%s\n“*(p+i-1)); //使用指向指针的指针输出对应的字符串数组中字符串
  return 0;
}



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         631  2010-12-04 13:19  Month\Month.cpp
     文件        4524  2010-10-20 10:11  Month\Month.dsp
     文件         535  2010-10-20 10:11  Month\Month.dsw
     文件       50176  2010-12-04 13:20  Month\Month.ncb
     文件       48640  2010-12-04 13:20  Month\Month.opt
     文件        1766  2010-12-04 13:19  Month\Month.plg
     文件        1202  2010-10-20 10:11  Month\ReadMe.txt
     文件         292  2010-10-20 10:11  Month\StdAfx.cpp
     文件         769  2010-10-20 10:11  Month\StdAfx.h
     文件      163928  2010-12-04 13:19  Month\Debug\Month.exe
     文件      173184  2010-12-04 13:19  Month\Debug\Month.ilk
     文件        5054  2010-12-04 13:19  Month\Debug\Month.obj
     文件      203916  2010-12-04 13:19  Month\Debug\Month.pch
     文件      345088  2010-12-04 13:19  Month\Debug\Month.pdb
     文件        2344  2010-12-04 13:19  Month\Debug\StdAfx.obj
     文件       33792  2010-12-04 13:19  Month\Debug\vc60.idb
     文件       53248  2010-12-04 13:19  Month\Debug\vc60.pdb

评论

共有 条评论