程序设计与算法(三)C++面向对象程序设计 第七周 相关笔记

2021/10/23 9:39:48

本文主要是介绍程序设计与算法(三)C++面向对象程序设计 第七周 相关笔记,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1、cerr

freopen   cout输出到文件内时,cerr能输出到控制台显示

2、cin.getline()

defalut  ->  '\n'

#define IOS ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#include<bits/stdc++.h>
using namespace std;
int main(){
    //IOS;
    //freopen("a.txt","r",stdin);

    char a[1000];
    while(cin.getline(a,23333,',')){
        cout<<a<<endl;
    }




    return 0;
}

输出:
123,124,124,124,
123
124
124
124
View Code

3、cin.peek()提前读入一个字符,但不从输入流中去掉

#define IOS ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#include<bits/stdc++.h>
using namespace std;
int main(){
    //IOS;
    //freopen("a.txt","r",stdin);

    ;
    if(isdigit(cin.peek())){
        int a;
        cin>>a;
        cout<<a<<endl;
    }
    else{
        char a[10];
        cin>>a;
        cout<<a<<endl;;
    }




    return 0;
}
View Code

 



这篇关于程序设计与算法(三)C++面向对象程序设计 第七周 相关笔记的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程