: : Hi Guys,
: :
: : I am during a course called Theory of Computattion and have this assignment to do but need some help. I am to write a program that implement this language L = {ad, accd, bcd, bcccd,acecd}. Is there any one that can assist in writing this code. Thia automaton should accepts all and only the strings of the language.
: :
: Can you write a quick code for me?
:
#include <iostream>
using namespace std;
int main()
{
char input[80];
cout << "Enter input string: ";
fgets(input, sizeof(input), stdin);
//precess input
return 0;
}
~Donotalo()