代码搜索:Digit
找到约 4,689 项符合「Digit」的源代码
代码结果 4,689
www.eeworm.com/read/482122/6628244
c 51time.c
#include
#include
#define unit unsigned int
#define uchar unsigned char
/*定义字型字位口*/
#define DIGPORT XBYTE[0X8000]
#define WORDPORT XBYTE[0x4000]
/*定义P1口各管脚*/
sbit K0=P
www.eeworm.com/read/482213/6629708
java clock.java
// 程序:电子小时钟
// 范例文件:Clock.java
import java.awt.*;
import java.util.*; //为了使用其中的GregorianCalendar类
import java.applet.*;
public class Clock extends Applet implements Runnable
{
//
www.eeworm.com/read/481966/6633787
cpp 1970.cpp
/* This Code is Submitted by wywcgs for Problem 1970 on 2006-01-11 at 17:45:14 */
#include
#include
#include
using namespace std;
const int MAX = 1024;
bool
www.eeworm.com/read/481966/6633976
cpp 1013.cpp
/* This Code is Submitted by wywcgs for Problem 1013 on 2006-01-08 at 23:56:01 */
#include
#include
const int MAX = 1024;
int f(char*, int);
int main()
{
char digit[
www.eeworm.com/read/481966/6634101
cpp 1092.cpp
/* This Code is Submitted by wywcgs for Problem 1092 on 2006-02-10 at 16:38:33 */
#include
#include
#include
bool error;
char line[256], ch;
inline void wrong()
www.eeworm.com/read/481966/6634123
cpp 2134.cpp
/* This Code is Submitted by wywcgs for Problem 2134 on 2005-10-22 at 20:00:21 */
#include
#include
const int MAX = 128;
int digit[16];
void change(int);
int main()
{
www.eeworm.com/read/410188/11299310
cpp mipt009.cpp
/*
Alfonso Alfonso Peterssen
5 - 2 - 2008
MIPT #009 "Fibonacci numbers"
*/
#include
const int
MAXLEN = 100000,
BASE = 100000000;
int n, i;
struct bigint {
int len,
www.eeworm.com/read/400574/11573621
txt zifutongji.txt
输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数
程序源代码
#include "stdio.h"
main()
{char c;
int letters=0,space=0,digit=0,others=0;
printf("please input some charactersn");
while((c=getchar())!=''n'')
{
i
www.eeworm.com/read/400386/11577945
cpp xt3-16.cpp
#include
using namespace std;
int main ()
{char c;
int letters=0,space=0,digit=0,other=0;
cout
www.eeworm.com/read/400386/11578067
cpp xt6-16.cpp
#include
using namespace std;
int main()
{char str[50],*pstr;
int i,j,k,m,e10,digit,ndigit,a[10],*pa;
cout