代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/184890/9067597
cpp boolean.cpp
//: C03:Boolean.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Relational and logical operators
www.eeworm.com/read/281673/9142128
cpp boolean.cpp
//: C03:Boolean.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Relational and logical operators
www.eeworm.com/read/178378/9404923
cpp boolean.cpp
//: C03:Boolean.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Relational and logical operators.
#includ
www.eeworm.com/read/374083/9421555
h boolean.h
//$$ boolean.h Boolean class
#ifndef Boolean_LIB
#define Boolean_LIB 0
class Boolean
{
int value;
public:
Boolean(const int b) { value = b ? 1 : 0; }
Boolean
www.eeworm.com/read/365220/9872848
class boolean.class
www.eeworm.com/read/363888/9933058
cpp boolean.cpp
//: C03:Boolean.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Relational and logical operators
www.eeworm.com/read/359581/10135383
c boolean.c
// boolean.c -- using a _Bool variable
#include
int main(void)
{
long num;
long sum = 0L;
_Bool input_is_good;
printf("Please enter an integer to be summed ");
www.eeworm.com/read/356874/10219916
c boolean.c
// boolean.c -- using a _Bool variable
#include
int main(void)
{
long num;
long sum = 0L;
_Bool input_is_good;
printf("Please enter an integer to be summed ");
www.eeworm.com/read/355030/10300394
cpp boolean.cpp
//: C03:Boolean.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Relational and logical operators