代码搜索:iOS越狱

找到约 4,141 项符合「iOS越狱」的源代码

代码结果 4,141
www.eeworm.com/read/287580/8680304

cpp chapter6_client.cpp

// // Chapter6_Client.cpp // #include #include #include #include #include "..\Chapter6_Server\Chapter6_Server_i.c" #include "..\Chapter6_Ser
www.eeworm.com/read/431032/8712178

cpp datasave.cpp

#include "data.h" void DataSave(double**data,int row,int col,char*name) { int i,j; ofstream outfile; //打开文件,输出数据 outfile.open(name,ios::out); outfile.setf(ios::fixed); outfile.precisio
www.eeworm.com/read/431022/8712817

cpp datasave.cpp

#include "data.h" void DataSave(double**data,int row,int col,char*name) { int i,j; ofstream outfile; //打开文件,输出数据 outfile.open(name,ios::out); outfile.setf(ios::fixed); outfile.precisio
www.eeworm.com/read/286602/8757254

txt 例13.12.txt

例13.12 从例13.11建立的数据文件f1.dat中读入10个整数放在数组中,找出并输出10个数中的最大者和它在数组中的序号。 #include int main( ) {int a[10],max,i,order; ifstream infile(″f1.dat″,ios::in|ios::nocreate); //定义输入文件流对象,以输入方式打开磁盘文件f
www.eeworm.com/read/284998/8878128

cpp iofile.cpp

//: C02:Iofile.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Reading & writing one file #incl
www.eeworm.com/read/283541/9010052

cpp hashfm.cpp

//散列文件的插入、删除和查找操作 //HashFM.cpp #include #include #include #include //m为散列表的长度,确定取值为16 const int m=16; //km为散列主文件中每个结点所含的元素个数, //取值大于等于1,暂取为3
www.eeworm.com/read/184790/9075789

txt 例13.12.txt

例13.12 从例13.11建立的数据文件f1.dat中读入10个整数放在数组中,找出并输出10个数中的最大者和它在数组中的序号。 #include int main( ) {int a[10],max,i,order; ifstream infile(″f1.dat″,ios::in|ios::nocreate); //定义输入文件流对象,以输入方式打开磁盘文件f
www.eeworm.com/read/282295/9103895

h iodata.h

integer iop,ios,ird,iwd,icl,lun common /iodata/ iop,ios,ird,iwd,icl,lun
www.eeworm.com/read/281673/9142570

cpp iofile.cpp

//: C02:Iofile.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Reading & writing one file #incl
www.eeworm.com/read/380114/9162584

cpp hashfm.cpp

//散列文件的插入、删除和查找操作HashFM.cpp #include #include #include #include //m为散列表的长度,确定取值为16 const int m=16; //km为散列主文件中每个结点所含的元素个数, //取值大于等于1,暂取为3 const