代码搜索:iOS越狱

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

代码结果 4,141
www.eeworm.com/read/422200/10655965

cpp shiti9_5_1.cpp

#include #include #include void main() { fstream file; file.open("abc.txt",ios::in); if(!file) { cout
www.eeworm.com/read/397240/8061779

cpp connect.cpp

#include #include using namespace std; //'&'代表空字 void connect() { int head,rear,i=0,a,b; char middle,tail; //变量定义 ifstream infile1("nfa1.txt",ios::in); if(!infile1)
www.eeworm.com/read/245784/12780968

cpp dlgsort.cpp

// DLGSORT.cpp : implementation file // #include "stdafx.h" #include "RT.h" #include "DLGSORT.h" #include "Matrix.h" #include "Complex.h" #include "PandL.h" #include #include
www.eeworm.com/read/135582/5885508

cc rw_uyvy.cc

/* * rw_uyvy.cc */ #include "rw_uyvy.hh" bool CheckImageSize(ifstream& istr,const ImageInfo_Base& sizespec) { long pos = istr.tellg(); istr.seekg(0,ios::end); long filelength = istr.tellg(
www.eeworm.com/read/135582/5885668

cc rw_uyvy.cc

/* * rw_uyvy.cc */ #include "rw_uyvy.hh" bool CheckImageSize(ifstream& istr,const ImageInfo_Base& sizespec) { long pos = istr.tellg(); istr.seekg(0,ios::end); long filelength = istr.tellg(
www.eeworm.com/read/479166/6700186

cpp fig17_08.cpp

// Fig. 17.8: Fig17_08.cpp // Credit inquiry program. #include using std::cerr; using std::cin; using std::cout; using std::endl; using std::fixed; using std::ios; using std::left;
www.eeworm.com/read/479166/6700188

cpp fig17_14.cpp

// Fig. 17.14: Fig17_14.cpp // Reading a random-access file sequentially. #include using std::cerr; using std::cout; using std::endl; using std::fixed; using std::ios; using std::le
www.eeworm.com/read/405333/11465059

cpp facets.cpp

//: C04:Facets.cpp // From "Thinking in C++, 2nd Edition, Volume 2" // by Bruce Eckel & Chuck Allison, (c) 2003 MindView, Inc. // Available at www.BruceEckel.com. //{-bor} //{-g++} #include
www.eeworm.com/read/258931/11832081

cpp decimal2octal.cpp

//===================================== // title: 十进制转换为八进制 // author: cjj // date: 2007-10-09 /* Description: 十进制转换位八进制方法:逐次除以8,倒者排余数 */ //===================================== #include
www.eeworm.com/read/221894/14715625

cpp 11_5.cpp

//11_5.cpp #include struct Date { int mo,da,yr; }; void main() { Date dt = {6,10,92}; ofstream tfile("date.dat",ios::binary); tfile.write((char *) &dt,sizeof