#include #include using namespace std; void demSoTu(char s[100]) { int tu = 0; bool bat_dau = true; for (int i = 0; i < strlen(s); i++) { if (s[i] != ' ') { if (bat_dau) { tu++; bat_dau = false; } } else { bat_dau = true; } } cout<<"So tu: "<