代码搜索:iOS越狱
找到约 4,141 项符合「iOS越狱」的源代码
代码结果 4,141
www.eeworm.com/read/442261/7656384
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/299227/7874034
cpp hashfm.cpp
//散列文件的插入、删除和查找操作
//HashFM.cpp
#include
#include
#include
#include
//m为散列表的长度,确定取值为16
const int m=16;
//km为散列主文件中每个结点所含的元素个数,
//取值大于等于1,暂取为3
www.eeworm.com/read/198622/7921815
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/297288/8032987
txt 11章 c++输入输出流.txt
C++大学教程(第11章 C++输入/输出流-01)
教学目标
●了解怎样使用C++面向对象的输入/输出流
●能够格式化输入和输出
●了解I/O流类的层次结构
●了解怎样输入/输出用户自定义类型的对象
●能够建立用户自定义的流操纵算子
●能够确定/输出操作的成功与失败
●能够把输入输出流连到输人流上
11 ...
www.eeworm.com/read/145395/12726938
c peer.c
# include "config.h"
#if !WIN32
# include
# include
# include
# include
# include
# if HAVE_UNISTD_H
# include
www.eeworm.com/read/144074/12819546
h binfile.h
#ifndef BINARY_FILE_CLASS
#define BINARY_FILE_CLASS
// system files containing hierarchy of file handling methods.
#include
#include
#include
#include "st
www.eeworm.com/read/144074/12819647
h binfile.h
#ifndef BINARY_FILE_CLASS
#define BINARY_FILE_CLASS
// system files containing hierarchy of file handling methods.
#include
#include
#include
#include "st
www.eeworm.com/read/142793/12918490
cpp iofile.cpp
//: C04:Iofile.cpp
// From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison.
// (c) 1995-2004 MindView, Inc. All Rights Reserved.
// See source code use permissions stated in the file 'L
www.eeworm.com/read/141545/13002314
cpp cnt_read.cpp
#include
#include
void main(void)
{
float fnum[4] = {99.75, -34.4, 1776.0, 200.1};
int i;
ofstream out("numbers.asc", ios::out | ios::binary);
if(!out)
www.eeworm.com/read/141545/13002344
cpp get_file.cpp
#include
#include
int main(int argc, char *argv[])
{
char ch;
if(argc!=2)
{
cout