- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 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
#include <stdio.h>
#include <string.h>
int main()
{
char c, text[1024];
int l, i, n;
printf("Vvedite text: ");
gets(text);
l = strlen(text);
// 7.2.a -----------------------------------------------------------
for(i = 1; i < l; i++)
if(text[i] == 'a' && text[i - 1] == ' ')
n++;
printf("\nStroka soderjit %d slov nachinaushihsa s bukvi a\n", n);
// 7.2.b -----------------------------------------------------------
c = text[0];
n = 0;
for(i = 1; i < l; i++)
if(text[i] == ' ')
{
if(text[i - 1] == c)
n++;
c = text[i + 1];
}
if(text[l - 1] == c)
n++;
printf("Stroka soderjit %d slov nachinaushihsa i zakanchivaushihsa s odinakovih bukv\n", n);
// 7.2.b -----------------------------------------------------------
for(i = 0; i < l; i++)
{
if(text[i] == ' ')
printf("%c", '_');
else
printf("%c", text[i]);
}
//getch();
return 0;
}
Комментарии (0) RSS
Добавить комментарий