标签:bsp 不同的 爆发 自学 有关 style code c语言 nbsp
:咯, 世界上不同国家有不同的写日期的习惯。比如美国人习惯写成“月-日-年”,而中国人习惯写成“年-月-日”。下面请你写个程序,自动把读入的美国格式的日期改写成中国习惯的日期。
1 #include<stdio.h>
2 int main(){
3 int day;
4 int month;
5 int year;
6 scanf("%d-%d-%d", &month, &day, &year);
7 printf("%d-%02d-%02d\n", year, month, day);
8 return 0;
9 }
10 //输入样例:03-15-2017
标签:bsp 不同的 爆发 自学 有关 style code c语言 nbsp
原文地址:https://www.cnblogs.com/Xmj678/p/12827607.html