博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
YTU 2596: 编程题B-日期格式
阅读量:5098 次
发布时间:2019-06-13

本文共 846 字,大约阅读时间需要 2 分钟。

2596: 编程题B-日期格式

时间限制: 1 Sec  
内存限制: 128 MB
提交: 981  
解决: 74

题目描述

注:本题只需要提交编写的函数部分的代码即可。

将输入的日期格式 月/日/年  修改为 年-月-日的格式输出 。请编写缺少的函数output。

#include<stdio.h>

#include <iostream>
using namespace std;
struct date
{
    int year;
    int month;
    int day;
};
int main()
{
    struct date vd;
    void output(struct date da);
    scanf("%d/%d/%d",&vd.month,&vd.day,&vd.year);
    output(vd);
    return 0;
}

输入

月/日/年

输出

年-月-日

样例输入

6/23/2014

样例输出

2014-6-23

迷失在幽谷中的鸟儿,独自飞翔在这偌大的天地间,却不知自己该飞往何方……

#include
#include
using namespace std;struct date{ int year; int month; int day;};int main(){ struct date vd; void output(struct date da); scanf("%d/%d/%d",&vd.month,&vd.day,&vd.year); output(vd); return 0;}void output(struct date da){ printf("%d-%d-%d",da.year,da.month,da.day);}

转载于:https://www.cnblogs.com/im0qianqian/p/5989470.html

你可能感兴趣的文章
IDEA03 连接数据库、自动生成实体类
查看>>
保险数据分析
查看>>
字程序级别的重构
查看>>
标准的ajax上传
查看>>
extjs4 折线图(实时动态展现数据)实例
查看>>
测试小技巧之常用工具
查看>>
真有效值与有效值概念
查看>>
poj1470 LCA+RMQ
查看>>
搭建 CentOS 6 服务器(15) - Keepalived、HAProxy、LVS
查看>>
优秀IOS开发网站集合
查看>>
hdu 4451水题
查看>>
博客作业2---线性表
查看>>
右击main 方法运行正常,启动tomcat 后,spring boot 项目 出现参数字符串是乱码的情况...
查看>>
javascript朝花夕拾
查看>>
20135335郝爽 & 20135304刘世鹏 实验一
查看>>
多行文本省略号的实现.html
查看>>
写枚举常量
查看>>
[POJ 1004] Financial Management C++解题
查看>>
Oracle基础进阶
查看>>
第一篇随笔, 正在做 ESP32 , STM32 , 树莓派 RaspberryPi 的创客工具
查看>>