1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#include <iostream>
using namespace std;
int main()
{
char D1;
/*char alphabet[27] = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'};
char numbers[10] = {'0','1','2','3','4','5','6','7','8','9'};
*/cout<<"enter a letter ";
cin>>D1;
if ( char D1 != 'a' )
{
cout<<"not special characters allowed";
}
else
{
cout<<"good job";
}
cin.ignore();
cin.get();
return 0;
}
|