C++

[C++]명품 C++ 프로그래밍 실습문제 11장 2번

Hs’s Coding vlog 2023. 1. 26. 17:44

[C++]명품 C++ 프로그래밍 실습문제 11장 2번

[C++]명품 C++ programming 실습문제 11장 2번

명품 C++ 프로그래밍실습문제/연습문제 /C++

#include <iostream>
#include <string>
#include <cstring>
#include <vector>
#include <ctime>
#include <cstdlib>
using namespace std;


int main(){
    char ch;
    int count =0;

    while (true)
    {
        cin.get(ch);
        if(ch == ' ')count++;
        if(cin.eof())break;
        cout.put(ch);
        if(ch == '\n')
            break;
    }
    cout << count;
    
    
    return 0;

}