代码搜索:Chapter
找到约 10,000 项符合「Chapter」的源代码
代码结果 10,000
www.eeworm.com/read/124791/14544171
cpp chapter2-24.cpp
//文件名:CHAPTER2-24.cpp
#include
#include
using namespace std;
int main()
{
string test;
while(test.empty() || test.size()
www.eeworm.com/read/124791/14544173
cpp chapter2-23.cpp
//文件名:CHAPTER2-23.cpp
#include
#include
#include
using namespace std;
int main()
{
string s(10u, ' '); // Create a string of ten blanks.
const
www.eeworm.com/read/124791/14544175
cpp chapter2-16.cpp
//文件名:CHAPTER2-16.cpp
#include
#include
using namespace std;
void main()
{
string Mystring1(10,' ');
string Mystring2=" This is the example string!";
string Mystring3(Mys
www.eeworm.com/read/124791/14544177
cpp chapter2-35.cpp
//文件名:CHAPTER2-35.cpp
#include
template
class Array
{
int i;
T *ar;
public:
Array(int c):i(c){ar=new T[c];}
void init(int n,T x){ar[n]=x;}
T& operator
www.eeworm.com/read/124791/14544179
cpp chapter2-22.cpp
//文件名:CHAPTER2-22.cpp
#include
#include
using namespace std ;
void main()
{
string str1("Heartbeat");
string str2("abcde");
int iPos = 0;
cout
www.eeworm.com/read/124791/14544180
cpp chapter2-32.cpp
//文件名:CHAPTER2-32.cpp
#include
#include
#include
int main(void)
{double x, y, result;
/* ... somehow set 'x' and 'y' ... */
errno = 0;
result = pow(x, y);
if (er
www.eeworm.com/read/124791/14544183
cpp chapter2-12.cpp
//文件名:CHAPTER2-12.cpp
#include
#include
#include
void main()
{
int i=30;
float f=12.34;
char c;
fstream fl("sf",ios::out|ios::in);
if(!fl) {cerr
www.eeworm.com/read/124791/14544184
cpp chapter2-14.cpp
//文件名:CHAPTER2-14.cpp
#include
#include
void main(int argc, char* argv[])
{
assert(argc==2);
ifstream in(argv[1]);
assert(in);
cout
www.eeworm.com/read/124791/14544186
cpp chapter2-10.cpp
//文件名:CHAPTER2-10.cpp
#include
#include
#include
void main(void)
{
ofstream f1("a:wr1.dat"); //定义输出文件流,并打开相应文件,若打开失败则f1带回0值
if (!f1)
{ //当f1
www.eeworm.com/read/124791/14544189
cpp chapter2-4.cpp
//文件名:CHAPTER2-4.cpp
#include
#include
void main()
{
int i=63;
float pai=3.14;
cout.setf(ios::hex,ios::basefield);
cout.setf(ios::showbase);
cout