c++ primer plus 例题课后题源代码

源代码在线查看: if.cpp

软件大小: 363 K
上传用户: zaindyclg
关键词: primer plus 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				// if.cpp -- using the if statement
				#include 
				int main()
				{
				    using namespace std;
				    char ch;
				    int spaces = 0;
				    int total = 0;
				    cin.get(ch);
				    while (ch != '.')   // quit at end of sentence
				    {
				        if (ch == ' ')  // check if ch is a space
				            ++spaces;
				        ++total;        // done every time
				        cin.get(ch);
				    }
				    cout 				    cout 				    return 0;
				}
							

相关资源