// Yousef Rabah     Asi 14 Switch           Dec. 11, 2001        Drawer 1602

#include "CS35lib.h"

int main()
{
	char grade_letter;
	cout<<"Please Enter ONE letter (lower Case or upper Case (A - K )";
	cin>>grade_letter;

	switch (grade_letter)
	{
		case 'A':
		case 'a':
		cout<<"A is for an Ahlan, meaning welcome ";
		break;
		case 'B':
		cout<<"B is for Bass, means enough";
		break;
		case 'C':
		cout<<"C is for Cahori (name for people of Beit-Cahour)";
		break;
		case 'D':
		cout<<"D is for Darast, which means I studied ";
		break;
		case 'E':
		cout<<"E is for Ensan, means Huaman Being";
		break;
		case 'F':
		cout<<"F is Falesteen, arabic for Palestine ";
		break;
		case 'G':
		cout<<"G is Gamal, means Beauty ";
		break;
		case 'H':
		cout<<"H is for Hasson (singing brid) ";
		break;
		case 'I':
		cout<<"I is for Inbassat, means look @ him he is happy";
		break;
		case 'J':
		cout<<"J Jibit, means I brough";
		break;
		case 'K':
		cout<<"K is for Kalam, means talking";
		break;
	}
	cout<<endl;
	cout<<"I hope you learned a Word in Arabic";
	cout<<endl;
	return 0;

}
		

