-
Notifications
You must be signed in to change notification settings - Fork 0
/
poisc-glas-i-mas.cpp
68 lines (51 loc) · 1.46 KB
/
poisc-glas-i-mas.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include <iostream>
#include <string.h>
using namespace std;
int main(){
const char* glas = "aeiouауеоэяию";
char array1[10][256]={""};//Массив для слов.
int k=0,array1_cout=0;
char predl[256];
cout<<"Введите предложение"<<endl<<">>>";
cin.getline(predl, sizeof(predl));
cout<<endl<<"Вы ввели: "<<predl<<endl;
char * pch;
const char* delim = " ";
pch=strtok(predl,delim);
while(pch!=NULL)
{
int mk = k;
char newcharmas[256] = "";
for (int i = 0; pch[i]; i++)
{
if(strchr(glas, pch[i]))
{
k++;
}
}
if (mk!=k)
{//Основные изменения в этой части кода.
strcat(newcharmas,pch);
for (int j=0;j<=strlen(newcharmas);j++)
{
array1[array1_cout][j]=newcharmas[j];
}
array1_cout++;
}
pch=strtok(NULL,delim);
}
cout<<endl<<"В данном предложении "<<k<<" гласных букв.";
cout<<endl<<"Создан новый массив слов: "<<endl<<endl;
int w=0;
for (int q=0; q<=array1_cout;q++)
{
for (w=0;w<=256;w++)
{
if (array1[q][w]!=NULL)
{
cout<<array1[q][w];
}
}
cout<<endl;
}
}