十三周——输入输出流——阅读

问题及代码:

/*
*Copyright (c) 2014,烟台大学计算机学院
*All rights reserved.
*文件名称:lily.cpp
*作者:李莉
*完成日期:2015年6月3日
*版本号:v1.0
*问题描述:控制输出的格式
程序输入:输入若干正数
程序输出:运行结果
*/

#include<iostream>
#include<cstdio>
using namespace std;
int main( )
{
    int c;
    cout<<"enter a sentence:"<<endl;
    while((c=cin.get())!=EOF)
        cout.put(c);
    return 0;
}


 

/*
*Copyright (c) 2014,烟台大学计算机学院
*All rights reserved.
*文件名称:lily.cpp
*作者:李莉
*完成日期:2015年6月3日
*版本号:v1.0
*问题描述:控制输出的格式
程序输入:输入若干正数
程序输出:运行结果
*/

#include<iostream>
#include<cstdio>
using namespace std;
int main( )
{
    char c;
    cout<<"enter a sentence:"<<endl;
    while(cin.get(c))  //读取一个字符赋给字符变量c,如果读取成功,cin.get(c)为真
        cout.put(c);
    cout<<"end"<<endl;
    return 0;
}


运行结果:

十三周——输入输出流——阅读_第1张图片

问题及代码:

/*
*Copyright (c) 2014,烟台大学计算机学院
*All rights reserved.
*文件名称:lily.cpp
*作者:李莉
*完成日期:2015年6月3日
*版本号:v1.0
*问题描述:控制输出的格式
程序输入:输入若干正数
程序输出:运行结果
*/

#include<iostream>
using namespace std;
int main( )
{
    char ch[20];
    cout<<"enter a sentence:"<<endl;
    cin.get(ch,10,'\n');//指定换行符为终止字符
    cout<<ch<<endl;
    return 0;
}


运行结果:

十三周——输入输出流——阅读_第2张图片

你可能感兴趣的:(十三周——输入输出流——阅读)