代码搜索:Sign
找到约 10,000 项符合「Sign」的源代码
代码结果 10,000
www.eeworm.com/read/301474/3839548
m p5_5.m
% Program P5_5
% Determines the binary equivalent of a
% decimal number in sign-magnitude form
d = input('Type in the decimal fraction = ');
b = input('Type in the desired wordlength = ');
d1 = abs(d)
www.eeworm.com/read/301474/3839695
m p5_5.m
% Program P5_5
% Determines the binary equivalent of a
% decimal number in sign-magnitude form
d = input('Type in the decimal fraction = ');
b = input('Type in the desired wordlength = ');
d1 = abs(d)
www.eeworm.com/read/298155/3874723
dat funtc146b.dat
#include
#include
#include
int main(void)
{
char *string;
double value;
int dec, sign;
int ndig = 10;
clrscr();
value = 9.876;
str
www.eeworm.com/read/298155/3874991
dat funtc125b.dat
#include
#include
#include
int main(void)
{
char *string;
double value;
int dec, sign;
int ndig = 10;
clrscr();
value = 9.876;
str
www.eeworm.com/read/448886/1683456
m p5_5.m
% Program P5_5
% Determines the binary equivalent of a
% decimal number in sign-magnitude form
d = input('Type in the decimal fraction = ');
b = input('Type in the desired wordlength = ');
d1 = abs(d)
www.eeworm.com/read/448886/1683603
m p5_5.m
% Program P5_5
% Determines the binary equivalent of a
% decimal number in sign-magnitude form
d = input('Type in the decimal fraction = ');
b = input('Type in the desired wordlength = ');
d1 = abs(d)
www.eeworm.com/read/448443/1689231
s qpribmapalib.s
/* qPriBMapALib.s - optimized bit mapped priority queue internals */
/* Copyright 1984-2001 Wind River Systems, Inc. */
.data
.globl copyright_wind_river
/*
* This file has been developed or sign
www.eeworm.com/read/409921/2226476
c coord.c
#include "precomp.h"
/* the following deal with IEEE single-precision numbers */
#define EXCESS 126L
#define SIGNBIT 0x80000000L
#define SIGN(fp) ((fp) & SIGNBIT)
#defin