从Z循环到A就可以了。
#include using namespace std;int main(){ char c; for(c='Z'; c>='A'; c--) cout << c; cout << endl; return 0;}