L1-042. 日期格式化
Posted diamondDemand
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了L1-042. 日期格式化相关的知识,希望对你有一定的参考价值。
#include <iostream> using namespace std; int main() { char date[11]; cin >> date; for(int i=6; i<10; i++) cout << date[i]; cout << date[5]; for(int i=0; i<5; i++) cout << date[i]; return 0; }
以上是关于L1-042. 日期格式化的主要内容,如果未能解决你的问题,请参考以下文章
题解PTA团体程序设计天梯赛L1-042 日期格式化 (5 分) Go语言|Golang