Cod sursa(job #2699201)

Utilizator BogdancxTrifan Bogdan Bogdancx Data 23 ianuarie 2021 20:45:39
Problema Text Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.46 kb
#include <fstream>
#include <iostream>
#include <cstring>

using namespace std;

ifstream fin("test.in");
ofstream fout("test.out");

int main()
{
    char s[100001];
    char* p;
    int cnt = 0, x = 0;

    cin.getline(s, sizeof(s));

    p = strtok(s, " !@#$%^&*()_+}{|:?><,./\';][=-");

    while (p != NULL)
    {
        x += strlen(p), cnt++;
        p = strtok(NULL, " !@#$%^&*()_+}{|:?><,./\';][=-");
    }
    cout << (x - 1) / cnt;
}