How to display multiple Alphabet or None message with user define
To display Multiple alphabet or none message with user define
#include
int main()
{
int numbers;
char alp;
{cout << "How many alphabet you want to display ?: ";
cin >> numbers;
cout<< "\n"<<"and what alphebet you want to display ?: ";
cin>>alp;
}
while (numbers > 0)
{
cout <<<>
numbers--;
}
return 0;
}
Result :
No comments:
Post a Comment