機電之家資源網(wǎng)
單片機首頁|單片機基礎|單片機應用|單片機開發(fā)|單片機文案|軟件資料下載|音響制作|電路圖下載 |嵌入式開發(fā)
培訓信息
贊助商
100年日歷帶星期計算
100年日歷帶星期計算
 更新時間:2008-7-27 16:06:28  點擊數(shù):2
【字體: 字體顏色

100年日歷帶星期計算


發(fā)布時間:2008年1月5日 1時37分


// CalculateVC.cpp : Defines the entry point for the console application by VC6.0
// Function : simulate  singlechip Demo program
// Create time: 2006-11-21
// lhx_127@126.com

#include "stdafx.h"
#include <windows.h>
static unsigned char ucCount;
unsigned char const pWeek_tab[] = {0,1,4,4,0,2,5,0,3,6,1,4,6};
unsigned char const pMonth_tab[] = {0,
31,  //1
28,  //2
31,  //3
30,  //4
31,  //5
30,  //6
31,  //7
31,  //8
30,  //9
31,  //10
30,  //11
31   //2

};

typedef struct _SoftTime
{
 unsigned char Seconds;
 unsigned char Minutes;
 unsigned char Hours;
 unsigned char WeekDays;
 unsigned char Days;
 unsigned char Months;
 unsigned char Years;
 
} SoftTime, *pSoftTime ;

SoftTime structSoftTime;
//===================================================================
//Function Name :CalculateWeekDay
// Function     : According to date calculation weeks from the first
//                 year to the year 5535, no matter from the system
//       when the week began and ended
//input         : Year,Month,Day
//OutPut        : Week
//global        : None
//===================================================================

unsigned char CalculateWeekDay(unsigned int Year,unsigned char Month,unsigned char Date)
{
 unsigned char err;
 
 if((Month<3) && (!(Year&0x03) && (Year%1000) || (!(Year%400)))) {
  Date--;
 }
 err = (Date + Year + Year/4 + Year/400 - Year/100 + pWeek_tab[Month]-
  2)%7;
 
 return err;
}

 

void SoftTime_UpdataData(void)

 
 if( structSoftTime.Days >= pMonth_tab[structSoftTime.Months])
    {
  
  if( structSoftTime.Months == 2)
  {
   if(!(structSoftTime.Years & 0x03 ))
   {
    if(structSoftTime.Days >= 29 ) structSoftTime.Days = 1;
    else{structSoftTime.Days++; structSoftTime.Months--; }
   }
   else   structSoftTime.Days = 1;
  } else   structSoftTime.Days = 1;
  
  if( structSoftTime.Months >= 12)
  {
   structSoftTime.Months = 1;
   structSoftTime.Years++;
   if(structSoftTime.Years == 100) structSoftTime.Years = 0;
  }else structSoftTime.Months++;
   //{if( !(!(structSoftTime.Years & 0x03) && (structSoftTime.Months == 2)) )structSoftTime.Months++; }
  
  
  
 }else structSoftTime.Days++;
}


int main(int argc, char* argv[])
{
 
 unsigned char temp;
    unsigned char Week;
 structSoftTime.Years = 20;
 structSoftTime.Months = 11;
 structSoftTime.Days  = 21;
 structSoftTime.Hours = 12;
 structSoftTime.Minutes = 10;
 
 Week = CalculateWeekDay(2006,1,21);
 printf("this Week is %d \n",Week);
    while (1)
    {
 // Sleep(1);
  ucCount++;
  if(ucCount == 2)
  {
   ucCount = 0;
   structSoftTime.Seconds++;
    }
   if(structSoftTime.Seconds >= 59  )
   {
    
    structSoftTime.Seconds = 0;
    if(structSoftTime.Minutes >= 59)
    { printf(" data -- %2d-%2d-%2d---%2d-%2d\n",structSoftTime.Years,
    structSoftTime.Months,
    structSoftTime.Days,structSoftTime.Hours,structSoftTime.Minutes);
    
    structSoftTime.Minutes = 0;
    if(structSoftTime.Hours >= 23 )
    {
     structSoftTime.Hours = 0;
     SoftTime_UpdataData();
     
    }
    else structSoftTime.Hours++;
    }
    else
     structSoftTime.Minutes++;
   }
  
    
 
    }
 return 0;
}

 

  • 上一篇: 單片機模擬I2C讀寫E2PROM
  • 下一篇: 通過RS232總線與PC進行通信的測試程序(c語言)
  • 發(fā)表評論   告訴好友   打印此文  收藏此頁  關(guān)閉窗口  返回頂部
    熱點文章
     
    推薦文章
     
    相關(guān)文章
    網(wǎng)友評論:(只顯示最新5條。)
    關(guān)于我們 | 聯(lián)系我們 | 廣告合作 | 付款方式 | 使用幫助 | 機電之家 | 會員助手 | 免費鏈接

    點擊這里給我發(fā)消息66821730(技術(shù)支持)點擊這里給我發(fā)消息66821730(廣告投放) 點擊這里給我發(fā)消息41031197(編輯) 點擊這里給我發(fā)消息58733127(審核)
    本站提供的機電設備,機電供求等信息由機電企業(yè)自行提供,該企業(yè)負責信息內(nèi)容的真實性、準確性和合法性。
    機電之家對此不承擔任何保證責任,有侵犯您利益的地方請聯(lián)系機電之家,機電之家將及時作出處理。
    Copyright 2007 機電之家 Inc All Rights Reserved.機電之家-由機電一體化網(wǎng)更名-聲明
    電話:0571-87774297 傳真:0571-87774298
    杭州濱興科技有限公司提供技術(shù)支持

    主辦:杭州市高新區(qū)(濱江)機電一體化學會
    中國行業(yè)電子商務100強網(wǎng)站

    網(wǎng)站經(jīng)營許可證:浙B2-20080178-1