码迷,mamicode.com
首页 >  
搜索关键字:fstream    ( 487个结果
自考新教材-p326_3(2)
源程序: #include <iostream>#include <fstream>using namespace std; int main(){ int i; ifstream f1("c:\\tmp\\xt1.txt",ios::in); fstream f2("c:\\tmp\\xt2.tx ...
分类:其他好文   时间:2020-02-05 18:37:33    阅读次数:68
自考新教材-p326_3(1)
源程序: #include <iostream>#include <fstream>using namespace std; int main(){ int i; ofstream ftxt1; ftxt1.open("c:\\tmp\\xt1.txt",ios::out); for (i = 1; ...
分类:其他好文   时间:2020-02-05 17:54:22    阅读次数:62
自考新教材-p306
源程序: #include <iostream>#include <fstream>using namespace std;int main(){ ifstream inFile; inFile.open("c:\\tmp\\test.txt", ios::in); //以读的方式打开文本文件 if ...
分类:其他好文   时间:2020-02-05 13:32:40    阅读次数:73
p307
源程序: #include <iostream>#include <fstream>using namespace std;int main(){ ifstream inFile("c:\\tmp\\test.txt", ios::in); //声明对象inFile并调用构造函数 if (inFil ...
分类:其他好文   时间:2020-02-05 13:21:10    阅读次数:78
google protocol 入门 demo
ubunbu系统下google protobuf的安装 说明: 使用protobuf时需要安装两部分: 第一部分为\ .proto文件的编译器,它负责把定义的\ .proto文件生成对应的c++类的.h和.cpp文件; 第二部分是protobuf的c++动态库(由protobuf的源码编译生成),该 ...
分类:其他好文   时间:2020-02-03 10:04:36    阅读次数:86
螺旋矩阵
Description 给定一个包含 m x n 个元素的矩阵(m 行, n 列),请按照顺时针螺旋顺序,输出矩阵中的所有元素。 Input 第一行两个整数m, n。 (1≤ m, n ≤100) 第二行开始是一个m行n列的矩阵,每行的两个数之间由空格隔开。 Output 按照顺时针螺旋顺序,输出矩 ...
分类:其他好文   时间:2020-01-29 12:14:45    阅读次数:78
Fibonacci数列
1 #include<iostream> 2 //#include<fstream> 3 using namespace std; 4 int main(){ 5 int n; 6 //fstream file("haha.txt"); 7 //file>>n; 8 cin>>n; 9 int f3 ...
分类:其他好文   时间:2020-01-25 19:26:27    阅读次数:86
数的分解
1 #include<iostream> 2 //#include<fstream> 3 using namespace std; 4 bool check(int n){ 5 while(n){ 6 if(n%10==2||n%10==4){ 7 return false; 8 } 9 n/=10 ...
分类:其他好文   时间:2020-01-25 18:13:19    阅读次数:60
C++ file copy
#include <fstream> int main() { std::ifstream src("from.ogv", std::ios::binary); std::ofstream dst("to.ogv", std::ios::binary); dst << src.rdbuf(); } ...
分类:编程语言   时间:2020-01-21 10:39:57    阅读次数:77
C++ get file size
1/#include <fstream> std::ifstream::pos_type filesize(const char* filename) { std::ifstream in(filename, std::ifstream::ate | std::ifstream::binary); ...
分类:编程语言   时间:2020-01-21 10:34:42    阅读次数:144
487条   上一页 1 ... 3 4 5 6 7 ... 49 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!