Coding Change World

代码改变世界

2013年12月20日

PKU1008

摘要: 题名:玛雅历题意:历法转换 。代码:// 1008.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include using namespace std;class data{public: char day[200]; char mon[200]; char year[200];};int main(int argc, char* argv[]){ int num=0; cin>>num; char temp[256]={0}; data *s=new data[num]; for (int i=0;i>s... 阅读全文

posted @ 2013-12-20 09:54 alphaxz 阅读(206) 评论(0) 推荐(0) 编辑