Welcome![Sign In][Sign Up]
Location:
Search - LEAp

Search list

[Mathimatics-Numerical algorithmscharge

Description: c++实现的对电话进行计费的系统,涉及到闰年平年的判断及夏时制冬时制的转换问题-c achieve the right telephone billing system, which involves non-leap year of a leap year in the judgment and daylight saving time in winter when the system conversion,
Platform: | Size: 7153 | Author: 师磊 | Hits:

[Mathimatics-Numerical algorithms计算机日历程序

Description: 计算机日历程序 (包括判别是否闰年)-computer calendar (including discriminant whether a leap year)
Platform: | Size: 853 | Author: 刘明辉 | Hits:

[CSharpIFLEAP

Description: 一个有关于闰年的问题-a leap year on the issue
Platform: | Size: 1024 | Author: 唐宜 | Hits:

[OS program176972zhup

Description: 案例1判断闰年程序-case a judgment procedures leap year
Platform: | Size: 969 | Author: 宝宝 | Hits:

[Other resourceleap

Description: 判断是否闰年,判断某一天是此年的第几天, 计算一年的每月最后一天是该年的第几天
Platform: | Size: 1054 | Author: zhangchunming | Hits:

[assembly languageleap-year

Description: [汇编语言课程设计]判断是否为闰年的程序。
Platform: | Size: 3693 | Author: syj | Hits:

[assembly languageIfleap1

Description: 判断闰年,怎么说,有兴趣可以看看吧,算法应该大家都会~-judgment leap year, how that interest can look at it, the algorithm should we all ~
Platform: | Size: 1030 | Author: 罗现 | Hits:

[Other resourceLeapYear

Description: 一个用来计算每年1月1号星期几的c小程序!实现比较简单,其实就是计算闰年的小程序,不过小程序可能有点小bug,希望大家包含!-one used to calculate the annual January 1 several weeks of c small program! Achieving a relatively simple calculation of leap year is actually a small, but a small program might have a small bug, we hope that contain!
Platform: | Size: 4703 | Author: 断翼 | Hits:

[Other月历程序源代码

Description: 月历程序可点击今天按钮,得到今天的日期 显示年月日及星期,并可检测闰年点击今天按钮,可得到今天的日期 -procedures can click on the calendar today button, get today's date and the date indicated weeks, it can detect a leap year today button, will be today's date
Platform: | Size: 2464 | Author: 何问宇 | Hits:

[Otherweek

Description: 万年历中星期的算法 包括闰年,从0000-9999年 原代码,未编译-hefty almanac weeks algorithm which include a leap year, from 0000-9999, the original code did not compile
Platform: | Size: 1263 | Author: 杨世国 | Hits:

[Other简易日历(H)

Description: 一个简易日历程序,已知公元元年一月一日即耶稣诞生日是星期一,那么因为365%7=1,366%7=2。所以每过一年平年星期数加一,每过一年闰年星期数加二,依次类推就可以求出任意一年一月一日是星期几。-a simple calendar program, known Year on January 1 that the first year of the birth of Jesus Day is Monday, because 365% = 1,366 7% 7 = 2. So every non-leap year over year increase in a few weeks, a leap year every year the number increases two weeks, followed by analogy can be found arbitrary January 1, 2001 is several weeks.
Platform: | Size: 36121 | Author: XFX | Hits:

[Other

Description: 这是一个判断某一年是否为润年的程序,运行可执行程序Ifleap.exe后,输入具体的年份, 可输出是本年是否为闰年的提示信息。-This a judgment of whether a particular year of a leap year, the running executable Ifleap.exe after importation of specific year, the output this year is a leap year if the message.
Platform: | Size: 1034 | Author: yhs | Hits:

[assembly language闰年计算

Description:

 data segment    ;定义数据段

    infon db 0dh,0ah,'Please input a year: $'
    Y db 0dh,0ah,'This is a leap year! $'
    N db 0dh,0ah,'This is not a leap year! $'
    w dw 0
    buf db 8
        db ?
        db 8 dup(?)
data ends
 
stack segment stack
    db 200 dup(0)
stack ends
 
code segment
          assume ds:data,ss:stack,cs:code
    start:mov ax,data
          mov ds,ax
         
          lea dx,infon ;在屏幕上显示提示信息
          mov ah,9
          int 21h
 
          lea dx,buf    ;从键盘输入年份字符串
          mov ah,10
          int 21h
         
          mov cl, [buf+1]
          lea di,buf+2
          call datacate
          call ifyears
          jc a1
         
          lea dx,n
          mov ah,9
          int 21h
          jmp exit
    a1:   lea dx,y
          mov ah,9
          int 21h
    exit: mov ah,4ch
          int 21h
      
 
 
 datacate proc near;
          push cx;                                                      
          dec cx
          lea si,buf+2
     tt1: inc si
          loop tt1
          ;lea si,cx[di]
          pop cx
    
     
          mov dh,30h
          mov bl,10
          mov ax,1
      l1: push ax
          sub byte ptr [si],dh
          mul byte ptr [si]
          add w,ax
          pop ax
          mul bl
          dec si
          loop l1
          ret
 datacate endp
 
 
   ifyears proc near
           push bx
           push cx
           push dx
           mov ax,w
           mov   cx,ax
           mov dx,0
           mov bx,4
           div bx
           cmp dx,0
           jnz lab1
           mov   ax,cx
           mov bx,100
           div bx
           cmp dx,0
           jnz lab2
           mov ax,cx
           mov bx,400
           div bx
           cmp dx,0
           jz lab2
     lab1: clc
           jmp lab3
     lab2: stc
     lab3: pop dx
           pop cx
           pop bx
           ret
   ifyears endp
code ends
   end start
     




[广告] 2008年最受关注楼盘


Platform: | Size: 10752 | Author: jackdawson0@ | Hits:

[JSP/Javafilei

Description: 这是一个判断闰年的JAVA源代码程序,在这儿和大家一起分享其中的技巧。-this is a leap year judgment Java source code procedures, and here we share these skills.
Platform: | Size: 1024 | Author: 吴昊 | Hits:

[assembly languageIfleap

Description: 这是一个判断某一年是否为润年的程序,运行可执行程序Ifleap.exe后,输入具体的年份, 可输出是本年是否为闰年的提示信息。-This a judgment of whether a particular year of a leap year, the running executable Ifleap.exe after importation of specific year, the output this year is a leap year if the message.
Platform: | Size: 1024 | Author: 杨磊 | Hits:

[JSP/Javaa01

Description: JAVA程序—闰年的验证-procedures JAVA-leap year certification
Platform: | Size: 1024 | Author: 风子 | Hits:

[Mathimatics-Numerical algorithms判断闰年1

Description: 判断闰年用c++写的,我也才学-judgment leap year with c write, and I barely
Platform: | Size: 20480 | Author: 趁里能 | Hits:

[Mathimatics-Numerical algorithms新建 文本文档 (8)

Description: MP3播放器: 利用API函数[mciSendString]可以轻松实现MP3音乐文件的播放。下面这段程序实现了MP3播放的大部分常规操作,对其稍加修改,做一个100KB大小的MP3播放器轻而易举 启动VB程序,在窗体上放置6个命令按钮,三个标签,一个公用对话框、一个进度条、一个状态栏和一个计时器,窗本的布置请参考附图 按钮"Open MP3 File"是用来打开对话框选择MP3文件,其他5个按钮分别为Play(播放)、Pause(暂停)、Stopplay(停止播放)、Back(向后跳跃)、Prew(向前跳跃)。Label1用来表示歌曲当前时间;label2放在时度条的最左边,Caption属性为"00:00";lable3放在时度条的右边,用来表示歌曲总长。-MP3 player : API function [mciSendString] can easily MP3 music player. Below this program of the MP3 player most of the conventional operation, its slightly modified, so the size of a 100KB MP3 player easily activated VB procedures, the forms to place orders six buttons, three label, a common dialog, a progress of a status bar and a 000 timer, the window layout of the buttons refer to the attached map. "MP3 File Open" is used to open the dialog box choose MP3 files, the other five buttons for Play (player), Pause (suspended), Stopplay (Cessation of players), Back (backwards jump), Prew (leap forward). Label1 songs said to the current time; Label2 degrees of time on the far left, Caption attribute to "00:00"; When lable3 degrees on the right, to songs chief said.
Platform: | Size: 2048 | Author: 周军 | Hits:

[JSP/Javaflystars

Description: 编写Java Application程序, 实现屏幕保护程序—飞跃星空,并具有同样的参数设置面板。-Java Application procedures for the preparation and realization of screen protection program- Star leap, and with the same parameter settings panel.
Platform: | Size: 1024 | Author: 里中学 | Hits:

[Mathimatics-Numerical algorithmscharge

Description: c++实现的对电话进行计费的系统,涉及到闰年平年的判断及夏时制冬时制的转换问题-c achieve the right telephone billing system, which involves non-leap year of a leap year in the judgment and daylight saving time in winter when the system conversion,
Platform: | Size: 256000 | Author: 师磊 | Hits:
« 1 2 3 4 5 67 8 9 10 11 ... 38 »

CodeBus www.codebus.net