编辑代码

#include <iostream>
int main() 
{
   char s='A';
   while(s<='Z')
   {
       printf("%4c",s);
       s++;
   }
	return 0;
}