xieyue-C++程序设计 各章中的 程序代码 适合初学者

源代码在线查看: 例13.8.txt

软件大小: 4499 K
上传用户: fpeisheng
关键词: xieyue-C 程序设计 程序 代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				例13.8 逐个读入一行字符,将其中的非空格字符输出。
				#include 
				using namespace std;
				int main( )
				{char c;
				 while(!cin.eof( ))//eof( )为假表示未遇到文件结束符
				if((c=cin.get( ))!=′ ′)            //检查读入的字符是否为空格字符
				     cout.put(c);
				  return 0;
				}			

相关资源