哈工大C语言程设计精髓-日期显示

题目内容:

编写一个程序, 接收用户录入的日期信息并且将其显示出来. 其中, 输入日期的形式为月/日/年(mm/dd/yy), 输出日期的形式为年月日(yy.mm.dd)

以下为程序的运行结果示例:

 

Enter a date (mm/dd/yy):

12/03/2015↙

You entered the date: 2015.12.03

 

#include
#include
#include
int main()
{
printf("Enter a date (mm/dd/yy):\n");
int m,d,y;
scanf( "%d/%d/%d",&m,&d,&y);
printf("You entered the date: %04d.%02d.%02d\n",y,m,d);
return 0;
}

你可能感兴趣的:(哈工大C语言程设计精髓-日期显示)