代码搜索:iOS越狱
找到约 4,141 项符合「iOS越狱」的源代码
代码结果 4,141
www.eeworm.com/read/183302/9170702
cpp hashfm.cpp
//散列文件的插入、删除和查找操作
//HashFM.cpp
#include
#include
#include
#include
//m为散列表的长度,确定取值为16
const int m=16;
//km为散列主文件中每个结点所含的元素个数,
//取值大于等于1,暂取为3
www.eeworm.com/read/379196/9204944
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/181299/9260281
h data.h
#ifndef CLASS_H
#define CLASS_H
#include
#include
#include "reader.h"
#include "book.h"
const int Maxr=50;
const int Maxb=200;
//定义一个抽象数据类
class data
{
protected:
www.eeworm.com/read/180019/9322664
cpp 1_2.cpp
#include
#include
void main()
{
float S,A[]={0.0,0.0,0.0}; //数组存放各自所分到的量
char *name[]={"老大分得","老二分得","老三分得"};
for(int i=1;i
www.eeworm.com/read/374949/9378270
cpp 1_2.cpp
#include
#include
void main()
{
float S,A[]={0.0,0.0,0.0}; //数组存放各自所分到的量
char *name[]={"老大分得","老二分得","老三分得"};
for(int i=1;i
www.eeworm.com/read/178951/9380638
c pipestream.c
// pipestream.C -*- C++ -*- socket library
// Copyright (C) 1992-1996 Gnanasekaran Swaminathan
//
// Permission is granted to use at your own risk and distribute this software
// i
www.eeworm.com/read/178378/9405084
cpp iofile.cpp
//: C19:Iofile.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Reading & writing one file
#include
www.eeworm.com/read/416348/10002422
cpp ep9_10.cpp
/*9.10 采用筛选法求100以内的所有素数(参见【例3.16】)。将所得数据存入文本文件和二进制文件。
对送入文本文件中的素数,要求存放格式是每行10个素数,每个数占6个字符,左对齐;可用任一文本编辑
器将它打开阅读。二进制文件整型数的长度请用sizeof()来获得,要求可以正序读出,也可以逆序读出
(利用文件定位指针移动实现),读出数据按文本文件中的格式输出显示。*/
/*前半题文本 ...
www.eeworm.com/read/164727/10091918
cpp password.cpp
//密码设置修改函数
#include "begin.h"
int check(char c)//检验输入字符函数
{
if(c>='0'&&c='a'&&c='A'&&c
www.eeworm.com/read/164716/10092187
cpp add.cpp
//添加数据
#include
#include"main.h"
#include"classes.h"
void add()
{
int choice;
student*p=new student;
// long num;
//f.seekp(0,ios::end); //读指针移到文件末尾
//long posEnd=f.tellp();