Enviado em 14/12/2017 - 08:45h
Olá,L={yxz|y E {a,b,c}+ e z E {1,2,3}+}
abcx123
23ax2b1
bx31
a2x3b
bcax321
#include <stdio.h>
#include <stdlib.h>
FILE *arquivo;
void voltaLeitura()
{
fseek(arquivo, -1, SEEK_CUR);
}
char getSimbolo()
{
char temp;
if(arquivo==NULL)
{
printf("Erro: arquivo n�o aberto!\n");
return EOF;
}
temp = fgetc(arquivo);
return temp;
}
int AFD()
{
int E=0;
char S='i';
while(S!=EOF)
{
S=getSimbolo();
switch(E)
{
case 0:
if(S=='a'||S=='b'||S=='c')
E=1;
else
E=0;
break;
case 1:
if(S=='x')
E=2;
else if(S=='a'||S=='b'||S=='c')
E=1;
else
E=0;
break;
case 2:
if(S=='1'||S=='2'||S=='3')
E=3;
else if(S=='a'||S=='b'||S=='c')
E=1;
else
E=0;
break;
case 3:
if(S=='1'||S=='2'||S=='3')
E=3;
else
E=4;
break;
}
}
if(E==4) return 1;
return -1;
}
int main()
{
int retorno;
arquivo = fopen("entrada2b.txt", "r");
retorno = AFD();
if(retorno == 1)
printf("Valido\n");
else if(retorno == -1)
printf("Invalido\n");
fclose(arquivo);
return 0;
}
Servidor de Backup com Ubuntu Server 24.04 LTS, RAID e Duplicati (Dell PowerEdge T420)
Visualizar câmeras IP ONVIF no Linux sem necessidade de instalar aplicativos
Atualizar Debian Online de uma Versão para outra
Proteja seu Linux Mint com o Timeshift: Restaure o sistema mesmo que ele não inicie!
Instalando Google Chrome no Debian 13
Erro no boot pen drive 4gb (1)
Ajude-me a criar uma lista de jogos retrô! (5)
Alguém pode me recomendar um editor de textos? (2)
meus dois pen drives não são mais reconhecidos pelo meu PC apos tentar... (1)