#include
int main()
{
// Exibe o alfabeto
// minúsculo.
for(char ch = 97; ch <= 122; ch++)
cout << ch << " ";
system("pause");
} // Fim de main()
int main()
{
// Exibe o alfabeto
// minúsculo.
for(char ch = 97; ch <= 122; ch++)
cout << ch << " ";
system("pause");
} // Fim de main()
Comentários
Postar um comentário