فرمت فایل :powerpoint (لینک دانلود پایین صفحه) تعداد اسلایدها 106 اسلاید
#inlcude<iostream.h>
#inlcude<stdlib.h>
#inlcude<stdio.h>
int main(){
int state;
char ch;
state=1;
switch(state){
case 1: ch= getc(stdin);
if (ch==’a’)
state=2;
else {
cout<<"Failed";
exit(0);
}
break;
case 2: ch=getc(stdin);
if(ch=='\n')
cout<<"Accepted";
else
cout<<"Failed";
exit(0);
}
return(0);
}
#inlcude<iostream.h>
#inlcude<stdlib.h>
#inlcude<stdio.h>
int main(){
int state;
char ch;
state=1;
while(1){
switch(state){
case 1: ch = getc(stdin);
if (ch==’a’) state=1;
else if(ch == 'b') state=2;
else {
cout<<"Failed";
exit(0);
}
break;
case 2: ch=getc(stdin);
if(ch=='\n') cout<<"Accepted";
else cout<<"Failed";
exit(0);
}
}
return(0);
}
#inlcude<iostream.h>
#inlcude<stdlib.h>
#inlcude<stdio.h>
int main(){
int state;
char ch;
state=1;
while(1){
switch(state){
case 1: ch = getc(stdin);
if ((ch>=’a’ && 'z'>=ch )|| (ch>=’A’ && 'Z'>=ch) )
state=2;
else {
cout<<"Failed";
exit(0);
}
break;
case 2:ch = getc(stdin);
if(ch=='\n'){
cout<<"Accepted";
exit(0);
}
else if ((ch>=’a’ && 'z'>=ch )|| (ch>=’A’ && 'Z'>=ch) || (ch>=’0’ && '9'>=ch))
state=2;
else {
cout<<"Failed";
exit(0);
}
exit(0);
break;
}
return(0);
}
پاورپوینت درباره درباره 1_27_compiler