توضیحات در فایل های ضمیمه
#include "stdafx.h"
#include "iostream"
using namespace std;
int main()
{
char x;
short int A = 65, a = 97;
for (short int i = 0; i < 26; i++) {
x = A;
A++;
cout << x;
x = a;
a++;
cout << x<<" ";
}
system("pause");
return 0;
}