代码搜索结果
找到约 10,000 项符合
4 的代码
4-4.h
#ifndef __4-4_H__
#define __4-4_H__
// write your header here
#endif
4-4.set
[General]
Version=1.0
Config=0
ReleaseIntermediate=.\Release
ReleaseOutput=.\Release
DebudIntermediate=.\Debug
DebugOutput=.\Debug
BodyName=SPCE060A_061A
[SetLink]
ExeFile=1
Output=.\Debug
4-4.lnp
"STARTUP.obj",
"4-4.obj"
TO "4-4"
4-4.plg
礦ision2 Build Log
Project:
D:\已完成\单片机语言C51程序设计\代码\代码\04\4-4\4-4.uv2
Project File Date: 08/25/2005
Output:
4-4.lst
C51 COMPILER V7.09 4_4 08/25/2005 10:49:02 PAGE 1
C51 COMPILER V7.09, COMPILATION OF MODULE 4_4
OBJECT MODULE PLACED IN 4-4
4-4.c
#include
#include
void subfun(int *m,int *n);
int main()
{
int i,j;
SCON = 0x50;
TMOD |= 0x20;
TH1 = 0xf3;
TR1 = 1;
TI = 1;
printf("i,j=?\n");
4-4.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 {
geometry4_4
1 0. :reference station number and x-coord.
100. 0. :station spacing and receiver depth
61 70 71 160 61. 0. :shot 1
4_4.txt
int StrEmpty(SString s)
/*若串s为空则返回1,否则返回0 */
{
if (s.len==0)
return(1);
else
return(0)
}
4-4.cs
using System;
/**********************************
枚举元素的默认基础类型为 int。默认情况下,第一个枚举数的值为 0,后面每个枚举数的值依次递增 1。例如:
enum Days {Sat, Sun, Mon, Tue, Wed, Thu, Fri};
在此枚举中,Sat 为 0,Sun 为 1,Mon 为 2,依此类推。枚举数可