全国高校绿色计算大赛 预赛第一阶段(C++)第4关:计算日期

挑战任务

我们吃的食物都有保质期,现在食品监督管理局想要制作一个能准确计算食品过期日期的小程序,需要请你来进行设计。

例如:A食品在2018年1月1日生产,保质期是20天,则它的过期日期在2018年1月21日。

编程要求

补全函数string getDate(string releaseDate,int day)其中releaseDate表示食品出厂日期day表示保质期,请根据传入的数据计算食品的过期日期,格式为yyyy-mm-dd4位年份2位月份2位日期。比如:2015-02-19

请严格按照格式书写,不能出现其它文字或符号,并将最终结果做为函数的返回值返回。

测试说明

样例1:

输入:
2016-01-0120

输出:

2016-01-21

#ifndef _TEST
#define _TEST
#include 
#include 
#include 
using namespace std;
std::vector split(std::string str,std::string pattern)
{
  std::string::size_type pos;
  std::vector result;
  str+=pattern;
  int size=str.size();
 
  for(int i=0; i

  

#ifndef _TEST
#define _TEST
#include 
#include 
using namespace std;

class Task{
	public:
		vector inversion(string str){
            vector  vec;
            int index = str.length();
            while(index--){
            	vec.push_back(str[index]);
            	}	
            return vec;
			}
};
#endif

  

#include 
#include 
#include 
#include "Task.hpp"

using namespace std;


int main(){
	string str;
	getline(cin,str);

	Task tt;
    vector  result;
	result = tt.inversion(str);
    for(int i = 0; i

 

运行结果

全国高校绿色计算大赛 预赛第一阶段(C++)第4关:计算日期_第1张图片

 

 

转载于:https://www.cnblogs.com/277223178dudu/p/9869761.html

你可能感兴趣的:(全国高校绿色计算大赛 预赛第一阶段(C++)第4关:计算日期)