代码搜索结果
找到约 10,000 项符合
5 的代码
5-5.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
CppX (*.cpp)
DaveTm {
5-5.lnp
"STARTUP.obj",
"5-5.obj"
TO "5-5"
5-5.c
#include
#define N 30
main()
{
int xdata i,s0=0,s1=0,s2=0,s3=0,s4=0;
float xdata score[N],max;
for (i=0 ;i
5-5.lst
C51 COMPILER V7.09 5_5 05/20/2004 11:41:52 PAGE 1
C51 COMPILER V7.09, COMPILATION OF MODULE 5_5
OBJECT MODULE PLACED IN 5-5
5_5.htm
第 2 章 线性表
5_5.c
/* ======================================== */
/* 程式实例: 5_5.c */
/* 前序四则表达式的值 */
/* ======================================== */
#include
5-5.txt
/* 范例:5-5 */
#include
void main(void)
{
printf("13>>1=%d\n",13>>1); /* 将13的二进制表示式向右位移1个位 */
printf("13
5-5.htm
function movepic(img_name,img_src) {
document[img_name].src=img_src;
}
5-5.cpp
#include
void main()
{
int year, leap;
scanf("%d",&year);
if (year%4==0)
{if (year%100==0)
{if (year%400==0)
leap=1;
else leap=0;}
else
5-5a.cpp
#include
void main()
{
int year, leap;
scanf("%d",&year);
if(year%4!=0)
leap=0;
else if(year%100!=0)
leap=1;
else if(year%400!=0)