博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
将有字母A组成的三角形写入文件,然后读出
阅读量:5014 次
发布时间:2019-06-12

本文共 610 字,大约阅读时间需要 2 分钟。

#include <iostream>
#include <fstream>
#include <stdlib.h>
using namespace std;
int main(){
    ofstream fout("test.txt",ios::out);
    if(!fout){
        cout<<"error"<<endl;
        return 1;
    }
    for(int i=0;i<7;i++){
        //first space
        for(int j=0;j<(6-i);j++)
            fout<<" ";
        //second 'A'
        for(int j=0;j<(2*i+1);j++)
            fout<<"A";
        fout<<endl;
    }
    fout.close();
    return 0;

}

//读出

#include <iostream>

#include <fstream>
using namespace std;
int main(){
    char ch;
    ifstream fin("test.txt",ios::in);
    if(!fin){
        cout<<"error"<<endl;
        return 1;
    }
    while(fin.get(ch)){
        cout<<ch;
    }
    fin.close();
    return 0;
}

转载于:https://www.cnblogs.com/wangjianupc/p/10587221.html

你可能感兴趣的文章
学习方法--提问
查看>>
merge-two-sorted-lists
查看>>
poj1061——扩展gcd水题
查看>>
UVa400.Unix ls
查看>>
POJ 2299 Ultra-QuickSort 归并排序、二叉排序树,求逆序数
查看>>
Educational Codeforces Round 60 (Rated for Div. 2) C. Magic Ship
查看>>
Windows 2008 R2系统开机时如何不让Windows进行磁盘检测?
查看>>
WP7应用开发笔记(18) 本地化与多语言
查看>>
解决 .so文件64与32不兼容问题
查看>>
归并排序法
查看>>
【剑指offer】面试题26:复杂链表的复制
查看>>
spark开发生成EXE
查看>>
Vue 全家桶介绍
查看>>
WPF Bitmap转Imagesource
查看>>
Java compiler level does not match the version of the installed Java project facet.解决方法
查看>>
笔记_小结
查看>>
Linux lsof命令 umount U盘
查看>>
自定义Font
查看>>
网络编程-socket并发-粘包问题
查看>>
python 中安装pandas
查看>>