自考新教材-p292
Posted duanqibo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自考新教材-p292相关的知识,希望对你有一定的参考价值。
源程序:
//
// main.cpp
// p292
//
// Created by duanqibo on 2020/1/27.
// Copyright © 2020年 duanqibo. All rights reserved.
//
#include<iostream>
using namespace std;
int main()
{
int n=0;
char ch;
while((ch=cin.get())!=EOF) //当文件没有结束时继续进行循环
{
cout.put(ch);
n++;
}
cout<<"输入字符共计:"<<n<<endl;
system("pause");
return 0;
}
运行结果:
以上是关于自考新教材-p292的主要内容,如果未能解决你的问题,请参考以下文章