代码搜索:Carry
找到约 8,060 项符合「Carry」的源代码
代码结果 8,060
www.eeworm.com/read/449694/7497989
c 大整数.c
#include
#include
#define HUN 10000
typedef struct node
{
int data;
struct node *next;
}NODE; //定义链表结构
NODE *insert(u,num)//在u节点之后插入一个新的NODE,其值为NUM
NODE *u;
int num;
www.eeworm.com/read/446312/7581235
cpp bignumber.cpp
#include "BigNumber.h"
#include
#include
BigNumber::BigNumber(int max)
{
nMaxLen = max;
pNum = new char[max];
nLength = 0;
}
BigNumber::BigNumber(const BigNumb
www.eeworm.com/read/442358/7654036
v fa.v
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 10:16:41 09/08/2008
// Design Name:
// Modul
www.eeworm.com/read/437246/7752942
cpp dsa.cpp
// dsa.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#ifndef CRYPTOPP_IMPORTS
#include "dsa.h"
#include "nbtheory.h"
NAMESPACE_BEGIN(CryptoPP)
size_t DSACon
www.eeworm.com/read/436982/7757755
asm avr_200_b.asm
;**** A P P L I C A T I O N N O T E A V R 2 0 0 ************************
;*
;* Title: Multiply and Divide Routines
;* Version: 1.1
;* Last updated: 97.07.04
;* Target: AT90Sxxxx (All AVR D
www.eeworm.com/read/436982/7757774
asm avr_200b_multiply_and_divide_routines.asm
;**** A P P L I C A T I O N N O T E A V R 2 0 0 ************************
;*
;* Title: Multiply and Divide Routines
;* Version: 1.1
;* Last updated: 97.07.04
;* Target: AT90Sxxxx (All AVR D
www.eeworm.com/read/435779/7784860
h pic18.h
#ifndef _PIC18_H
#define _PIC18_H
#if defined(_18C242) || defined(_18C252) || defined(_18C442) || defined(_18C452)
#include
#endif
#if defined(_18C658) || defined(_18C858) || de
www.eeworm.com/read/399506/7855649
txt avr的开方子程序.txt
用【 小 | 中 | 大 】字体浏览
AVR单片机:xiaoqi老师!?!?! [大天] [43次] 01-11-8 下午 07:15:56
老师?@?
那里有AVR的开方子程序?@
被开方数要是一个字.??@@
给我留言好吗!??
http://www.avr-forum.com/avrsource.html [晓奇.] [10次] 01-11-8 下午 07:1
www.eeworm.com/read/199146/7883065
s rand.s
AREA |subr|, CODE, READONLY
EXPORT randomnumber
randomnumber
; on exit:
; a1 = low 32-bits of pseudo-random number
; a2 = high bit (if you want to know it)
LDR ip, |seedpointer|
www.eeworm.com/read/433621/7918139
cpp jiecheng.cpp
// JieCheng.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include
#include
#include
#include
using namespace std;
void zerosOfJieCheng(int n);
in