代码搜索:coded
找到约 2,797 项符合「coded」的源代码
代码结果 2,797
www.eeworm.com/read/109099/15563835
cpp cpp08.cpp
// Coded by plusir -- Jan.09.2003.
// Standard C++ Bible -- (P537-19-8)
#include
#include
using namespace std ;
int main()
{
ifstream inFile( "test.txt" ) ;
inFile
www.eeworm.com/read/109099/15563836
cpp cpp03.cpp
// Coded by plusir -- Jan.09.2003.
// Standard C++ Bible -- (P530-19-3)
#include
using namespace std ;
int main()
{
cout
www.eeworm.com/read/109099/15563838
cpp cpp01.cpp
// Coded by plusir -- Jan.14.2003.
// Standard C++ Bible -- (P740-27-1)
#include
#include
using namespace std ;
class Shape
{
public:
virtual void foo( void ) co
www.eeworm.com/read/109099/15563839
cpp cpp04.cpp
// Coded by plusir -- Jan.14.2003.
// Standard C++ Bible -- (P747-27-4)
#include
#include
using namespace std ;
void* getMemory( void ) ;
int main()
{
char *cp = r
www.eeworm.com/read/109099/15563843
cpp cpp03.cpp
// Coded by plusir -- Jan.14.2003.
// Standard C++ Bible -- (P745-27-3)
#include
using namespace std ;
class B
{
public:
B( int a ) : i( a ) { }
void display( void ) con
www.eeworm.com/read/109099/15563863
cpp cpp04.cpp
// Coded by plusir -- Jan.09.2003.
// Standard C++ Bible -- (P504-17-4)
#include
using namespace std ;
int main()
{
char line[25] ;
cout
www.eeworm.com/read/109099/15563866
cpp cpp05.cpp
// Coded by plusir -- Jan.09.2003.
// Standard C++ Bible -- (P505-17-5)
#include
using namespace std ;
int main()
{
char line[25] ;
cout
www.eeworm.com/read/109099/15563882
cpp cpp07.cpp
// Coded by plusir -- Dec.29.2002.
// Standard C++ Bible -- (P239-8-7)
#include
using namespace std ;
#define DEBUG
#undef DEBUG
int main()
{
#ifndef DEBUG
cout
www.eeworm.com/read/109099/15563888
cpp cpp05.cpp
// Coded by plusir -- Dec.29.2002.
// Standard C++ Bible -- (P237-8-5)
#include
using namespace std ;
#define AbleBaker "alpha bravo"
#define cat( a, b ) a ## b
int main()
{
www.eeworm.com/read/109099/15563892
cpp cpp01.cpp
// Coded by plusir -- Jan.14.2003.
// Standard C++ Bible -- (P757-28-1)
#include
#include
#include
using namespace std ;
int main()
{
char dateStr[81] ;
ti