代码搜索:binary
找到约 10,000 项符合「binary」的源代码
代码结果 10,000
www.eeworm.com/read/344090/11909117
txt binary.txt
Function Bin(ByVal X As Long) As String
Do
Bin = (X And 1) & Bin
X = X \ 2
Loop While X
End Function
www.eeworm.com/read/154500/11949857
doc binary.doc
www.eeworm.com/read/153678/12012874
cpp binary.cpp
//: C12:Binary.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Overloading binary operators
www.eeworm.com/read/152755/12087416
m binary.m
function [out, seed] = binary(nsize,seed)
% BINARY ...... Generates a sequence of random binary digits.
%
% BINARY(N) Generates N random binary digits, such that the output
% sequence is eithe
www.eeworm.com/read/152186/12133622
c binary.c
www.eeworm.com/read/253260/12234826
cpp binary.cpp
// binary.cpp -- binary file I/O
#include // not required by most systems
#include
#include
#include // (or stdlib.h) for exit()
inline void eatline()
www.eeworm.com/read/253260/12235549
cpp binary.cpp
// binary.cpp -- binary file I/O
#include // not required by most systems
#include
#include
#include // (or stdlib.h) for exit()
inline void eatline()
www.eeworm.com/read/339038/12266574
c binary.c
/* binary.c */
#include
#include "integer.h"
#include "fun.h"
/*
main()
{
unsigned long i, j;
printf("Enter an unsigned int: ");
scanf("%lu", &i);
printf("%u\n", binary(i))
www.eeworm.com/read/337096/12391872
cpp binary.cpp
// binary.cpp -- binary file I/O
#include // not required by most systems
#include
#include
#include // (or stdlib.h) for exit()
inline void eatline()