1 / 1 / 0
Регистрация: 10.03.2011
Сообщений: 39
1

Вывести из файла все слова, которые начинаются на гласную букву

19.09.2011, 13:17. Показов 1449. Ответов 5
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Вивести из файла все слова котрые начинаются на гласную букву. Слова записаны на английском.

ООООЧень нужна помощь!
1
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
19.09.2011, 13:17
Ответы с готовыми решениями:

Вывести из файла все слова, которые начинаются на заданную букву
Написать программу которая читает англ. текст с файла и выводит на экран все слова что начинаются...

Вывести все слова, которые начинаются и заканчиваются на одну букву
Задан текст заканчивающийся точкой. Вывести все слова, которые начинаются и заканчиваются на одну...

Вывести только те слова, которые начинаются на гласную букву
Помогите написать программу, в которой есть два текстовых поля (richTextBox). В 1 текстовое поле...

Вывести на экран все слова из файла, которые начинаются на заданную букву
Создать текстовый файл, состоящий из слов (например в редакторе «Блокнот»). Необходимо: ...

5
794 / 546 / 61
Регистрация: 11.05.2010
Сообщений: 1,298
Записей в блоге: 1
19.09.2011, 13:52 2
Shab13, NooNameR, ну это же элементарно - прочитать слово и проверить его первую букву.
0
1 / 1 / 0
Регистрация: 10.03.2011
Сообщений: 39
19.09.2011, 14:30  [ТС] 3
Цитата Сообщение от talis Посмотреть сообщение
Shab13, NooNameR, ну это же элементарно - прочитать слово и проверить его первую букву.
Я это понимаю, но реализовать на практике не выходит...
0
794 / 546 / 61
Регистрация: 11.05.2010
Сообщений: 1,298
Записей в блоге: 1
19.09.2011, 14:31 4
Shab13, читайте литературу по С++, иначе ваша проблема никуда не уйдёт
0
Заблокирован
Автор FAQ
19.09.2011, 14:46 5
Цитата Сообщение от Shab13 Посмотреть сообщение
Вивести из файла все слова котрые начинаются на гласную букву. Слова записаны на английском.
ООООЧень нужна помощь!
Вот на Си
C
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
#include <stdlib.h> //malloc
#include <string.h> //strlen strtok
#include <stdio.h>  //i/o
 
int main()
{
    long sLen;
    char * str, *buf;
    char glasn[] = "aeyuoiAEYUOI";
    char delim[] = " ,.!?\n";
    FILE * f = fopen("text.txt","rb+");
    if(!f)
        printf("Error open text.txt\r\n");
    else
    {
        fseek(f,0,SEEK_END);
        sLen = ftell(f);
        fseek(f,0,SEEK_SET);
        if(!(str = (char *)malloc(sLen + 1)))
            printf("allocation memory error\r\n");
        else
        {
            fread(str,sLen,1,f);
            str[sLen] = '\0';
        }
        fclose(f);
        if(str)
        {
            buf = strtok(str,delim);
            while(buf)
            {
                if(strchr(glasn,buf[0]))
                    printf("%s ",buf);
                buf = strtok(NULL,delim);
            }
        }
    }
    printf("\r\nEnter any key\r\n");
    char ch;scanf("%c",&ch);
    return 0;
}
text.txt
Gravitational collapse is the inward fall of a body due to the influence of its own gravity. In any stable body, this gravitational force is counterbalanced by the internal pressure of the body, in the opposite direction to the force of gravity (gravity being generally orientated to the center of mass). If the inwards pointing gravitational force, however, is stronger than the total combination of the outward pointing forces, the equilibrium becomes unbalanced and a collapse occurs until the internal pressure increases above that of the gravitational force and a equilibrium is once again attained (the exception being black holes).
Because gravity is comparatively weak compared to other fundamental forces, gravitational collapse is usually associated with very massive bodies or collections of bodies, such as stars (including collapsed stars such as supernovae, neutron stars and black holes) and massive collections of stars such as globular clusters and galaxies.
Gravitational collapse is at the heart of structure formation in the universe. An initial smooth distribution of matter will eventually collapse and cause a hierarchy of structures, such as clusters of galaxies, stellar groups, stars and planets. For example, a star is born through the gradual gravitational collapse of a cloud of interstellar matter. The compression caused by the collapse raises the temperature until nuclear fuel reignites in the center of the star and the collapse comes to a halt. The thermal pressure gradient (leading to expansion) compensates the gravity (leading to compression) and a star is in dynamical equilibrium between these two forces.
Gravitational collapse of a star occurs at the end of its lifetime, also called the death of the star. When all stellar energy sources are exhausted, the star will undergo a gravitational collapse. In this sense a star is in a "temporary" equilibrium state between a gravitational collapse at stellar birth and a further gravitational collapse at stellar death. The end states are called compact stars.
The types of compact stars are:
White dwarfs, in which gravity is opposed by electron degeneracy pressure;
Neutron stars, in which gravity is opposed by neutron degeneracy pressure and short-range repulsive neutron-neutron interactions mediated by the strong force;
Black holes, in which the physics at the center is unknown.
The collapse to a white dwarf takes place over tens of thousands of years, while the star blows off its outer envelope to form a planetary nebula. If it has a companion star, a white dwarf-sized object can accrete matter from a companion star until it reaches the Chandrasekhar limit, at which point gravitational collapse takes over again. While it might seem that the white dwarf might collapse to the next stage (neutron star), they instead undergo runaway carbon fusion, blowing completely apart in a Type Ia supernova. Neutron stars are formed by gravitational collapse of larger stars, the remnant of other types of supernova.
Even more massive stars, above the Tolman-Oppenheimer-Volkoff limit cannot find a new dynamical equilibrium with any known force opposing gravity. Hence, the collapse continues with nothing to stop it. Once it collapses to within its Schwarzschild radius, not even light can escape from the star, and hence it becomes a black hole. According to theories, at some point later the collapsing object will reach the maximum possible energy density for a certain volume of space or the Planck density (as there is nothing that can stop it), where the known laws of gravity cease to be valid.[1] There are competing theories as to what occurs at this point, but it can no longer really be considered gravitational collapse at that stage.
It might be thought that a sufficiently large neutron star could exist inside its Schwarzschild radius and appear like a black hole without having all the mass compressed to a singularity at the center; however, this is a misconception. Within the event horizon, matter would have to move outwards faster than the speed of light in order to remain stable and avoid collapsing to the center. No physical force can therefore prevent the star from collapsing to a singularity (at least within the currently understood framework of general relativity). A model for nonspherical collapse in general relativity with emission of matter and gravitational waves was presented in [2].


Вывод консоли
is inward of a influence of its own In any is internal of in opposite of orienta
ted of If inwards is of outward equilibrium unbalanced and a occurs until intern
al increases above of and a equilibrium is once again attained exception is othe
r is usually associated or of as as and and of as and is at of in universe An in
itial of eventually and a of as of and example a is of a of interstellar until i
n of and a expansion) and a is in equilibrium of a occurs at end of its also of
all energy are exhausted undergo a In a is in a equilibrium a at and a at end ar
in is opposed electron in is opposed and interactions in at is unknown a over o
f of years off its outer envelope a If it a a object accrete a until it at over
again it instead undergo apart in a Ia are of of other of Even above a equilibri
um any opposing it Once it its even escape and it a According at object energy a
of or is it) of are as occurs at it at It a exist inside its and appear a all a
at is a event outwards of in order and avoid a understood of A in emission of a
nd in
Enter any key
1
Формучанин
364 / 294 / 42
Регистрация: 02.11.2010
Сообщений: 1,242
19.09.2011, 14:51 6
или так, если пофиг на запятые:
C
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>
#include <assert.h>
#include <conio.h>  
#include <string.h>
 
const char* glas="aeiouyAEIOUY";
 
int main(void) {
    FILE* f;char buf[0x100];
    assert((f=fopen("input.txt","r")));
    
    while (fscanf(f,"%255s",buf)==1)    
        if (strchr(glas,buf[0])) printf("%s\n",buf);       
    getch();   
    return 0;
}
1
19.09.2011, 14:51
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
19.09.2011, 14:51
Помогаю со студенческими работами здесь

Вывести на экран из файла все слова, которые начинаются на букву, введенную с клавиатуры пользователем
создать типизированный файл,элементами которого являются 60 слов случайной длины.Вывести на экран...

Вывести на экран из файла все слова, которые начинаются на ту же букву, что и последнее слово
Создать файл, состоящий из слов. Вывести на экран все слова, которые начинаются на ту же букву, что...

Удалить из строки русские слова, которые начинаются на гласную букву
Дана строка, в которой содержится осмысленное текстовое сообщение. Слова сообщения разделяются...

Удалите из сообщения только те русские слова, которые начинаются на гласную букву
Здравствуйте, помогите пожалуйста написать программу в С#, а то я в этом вообще ноль (( Задание:...

Удалить из сообщения только те русские слова, которые начинаются на гласную букву
Используя регулярное выражение, удалите из сообщения только те русские слова, которые начинаются на...

Считать из файла количество строк, которые начинаются на гласную букву
Молодежь, кто может написать программу, которая считывает из файла количество строк которые...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
6
Ответ Создать тему
Опции темы

КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru