输出月份英文名
摘要:
本题要求实现函数,可以返回一个给定月份的英文名称。函数getmonth应返回存储了n对应的月份英文名称的字符串头指针。如果传入的参数n不是一个代表月份的数字,则返回空指针NULL。 #include <stdio.h> char *getmonth( int n ); int main(){ int 阅读全文
posted @ 2021-08-01 18:33 李必恒 阅读(147) 评论(0) 推荐(0) 编辑